CfnGeneratedTemplateProps
- class aws_cdk.aws_cloudformation.CfnGeneratedTemplateProps(*, generated_template_name, template_configuration=None)
Bases:
objectProperties for defining a
CfnGeneratedTemplate.- Parameters:
generated_template_name (
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 import aws_cloudformation as cloudformation cfn_generated_template_props = cloudformation.CfnGeneratedTemplateProps( generated_template_name="generatedTemplateName", # the properties below are optional template_configuration=cloudformation.CfnGeneratedTemplate.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.