CfnGeneratedTemplateMixinProps
- class aws_cdk.cfn_property_mixins.aws_cloudformation.CfnGeneratedTemplateMixinProps(*, generated_template_name=None, template_configuration=None)
Bases:
objectProperties for CfnGeneratedTemplatePropsMixin.
- Parameters:
generated_template_name (
Optional[str]) – The name assigned to the generated template.template_configuration (
Union[IResolvable,TemplateConfigurationProperty,Dict[str,Any],None]) – The configuration details of the generated template.
- See:
- ExampleMetadata:
fixture=_generated
Example:
# The code below shows an example of how to instantiate this type. # The values are placeholders you should change. from aws_cdk.cfn_property_mixins import aws_cloudformation as cloudformation cfn_generated_template_mixin_props = cloudformation.CfnGeneratedTemplateMixinProps( generated_template_name="generatedTemplateName", template_configuration=cloudformation.CfnGeneratedTemplatePropsMixin.TemplateConfigurationProperty( deletion_policy="deletionPolicy", update_replace_policy="updateReplacePolicy" ) )
Attributes
- generated_template_name
The name assigned to the generated template.
- template_configuration
The configuration details of the generated template.