interface CfnGeneratedTemplateProps
| Language | Type name |
|---|---|
.NET | Amazon.CDK.CfnGeneratedTemplateProps |
Go | github.com/aws/aws-cdk-go/awscdk/v2#CfnGeneratedTemplateProps |
Java | software.amazon.awscdk.CfnGeneratedTemplateProps |
Python | aws_cdk.CfnGeneratedTemplateProps |
TypeScript | aws-cdk-lib » 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 * as cdk from 'aws-cdk-lib';
const cfnGeneratedTemplateProps: cdk.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