CfnGeneratedTemplateProps
- class aws_cdk.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. import aws_cdk as cdk cfn_generated_template_props = cdk.CfnGeneratedTemplateProps( generated_template_name="generatedTemplateName", # the properties below are optional template_configuration=cdk.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.