interface CfnGeneratedTemplateMixinProps
| Language | Type name |
|---|---|
.NET | Amazon.CDK.CfnPropertyMixins.AWS.CloudFormation.CfnGeneratedTemplateMixinProps |
Go | github.com/aws/aws-cdk-go/awscdkcfnpropertymixins/v2/awscloudformation#CfnGeneratedTemplateMixinProps |
Java | software.amazon.awscdk.cfnpropertymixins.services.cloudformation.CfnGeneratedTemplateMixinProps |
Python | aws_cdk.cfn_property_mixins.aws_cloudformation.CfnGeneratedTemplateMixinProps |
TypeScript | @aws-cdk/cfn-property-mixins » aws_cloudformation » CfnGeneratedTemplateMixinProps |
Properties for CfnGeneratedTemplatePropsMixin.
Example
// The code below shows an example of how to instantiate this type.
// The values are placeholders you should change.
import { aws_cloudformation as cloudformation } from '@aws-cdk/cfn-property-mixins';
const cfnGeneratedTemplateMixinProps: cloudformation.CfnGeneratedTemplateMixinProps = {
generatedTemplateName: 'generatedTemplateName',
templateConfiguration: {
deletionPolicy: 'deletionPolicy',
updateReplacePolicy: 'updateReplacePolicy',
},
};
Properties
| Name | Type | Description |
|---|---|---|
| generated | string | The name assigned to the generated template. |
| template | IResolvable | Template | The configuration details of the generated template. |
generatedTemplateName?
Type:
string
(optional)
The name assigned to the generated template.
templateConfiguration?
Type:
IResolvable | Template
(optional)
The configuration details of the generated template.

.NET
Go
Java
Python
TypeScript