interface TemplateConfigurationProperty
| Language | Type name |
|---|---|
.NET | Amazon.CDK.CfnGeneratedTemplate.TemplateConfigurationProperty |
Go | github.com/aws/aws-cdk-go/awscdk/v2#CfnGeneratedTemplate_TemplateConfigurationProperty |
Java | software.amazon.awscdk.CfnGeneratedTemplate.TemplateConfigurationProperty |
Python | aws_cdk.CfnGeneratedTemplate.TemplateConfigurationProperty |
TypeScript | aws-cdk-lib » CfnGeneratedTemplate » TemplateConfigurationProperty |
The configuration details of the generated template.
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 templateConfigurationProperty: cdk.CfnGeneratedTemplate.TemplateConfigurationProperty = {
deletionPolicy: 'deletionPolicy',
updateReplacePolicy: 'updateReplacePolicy',
};
Properties
| Name | Type | Description |
|---|---|---|
| deletion | string | The DeletionPolicy assigned to resources in the generated template. |
| update | string | The UpdateReplacePolicy assigned to resources in the generated template. |
deletionPolicy?
Type:
string
(optional)
The DeletionPolicy assigned to resources in the generated template.
updateReplacePolicy?
Type:
string
(optional)
The UpdateReplacePolicy assigned to resources in the generated template.

.NET
Go
Java
Python
TypeScript