interface CfnGeneratedTemplateProps
| Language | Type name |
|---|---|
.NET | Amazon.CDK.AWS.CloudFormation.CfnGeneratedTemplateProps |
Go | github.com/aws/aws-cdk-go/awscdk/v2/awscloudformation#CfnGeneratedTemplateProps |
Java | software.amazon.awscdk.services.cloudformation.CfnGeneratedTemplateProps |
Python | aws_cdk.aws_cloudformation.CfnGeneratedTemplateProps |
TypeScript | aws-cdk-lib » aws_cloudformation » CfnGeneratedTemplateProps |
Properties for defining a CfnGeneratedTemplate.
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-lib';
const cfnGeneratedTemplateProps: cloudformation.CfnGeneratedTemplateProps = {
generatedTemplateName: 'generatedTemplateName',
// the properties below are optional
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
The name assigned to the generated template.
templateConfiguration?
Type:
IResolvable | Template
(optional)
The configuration details of the generated template.

.NET
Go
Java
Python
TypeScript