CfnGeneratedTemplateProps

class aws_cdk.CfnGeneratedTemplateProps(*, generated_template_name, template_configuration=None)

Bases: object

Properties 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:

http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-cloudformation-generatedtemplate.html

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.

See:

http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-cloudformation-generatedtemplate.html#cfn-cloudformation-generatedtemplate-generatedtemplatename

template_configuration

The configuration details of the generated template.

See:

http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-cloudformation-generatedtemplate.html#cfn-cloudformation-generatedtemplate-templateconfiguration