Class CfnGeneratedTemplatePropsMixin.TemplateConfigurationProperty
The configuration details of the generated template.
Inherited Members
Namespace: Amazon.CDK.CfnPropertyMixins.AWS.CloudFormation
Assembly: Amazon.CDK.CfnPropertyMixins.dll
Syntax (csharp)
public class CfnGeneratedTemplatePropsMixin.TemplateConfigurationProperty : CfnGeneratedTemplatePropsMixin.ITemplateConfigurationProperty
Syntax (vb)
Public Class CfnGeneratedTemplatePropsMixin.TemplateConfigurationProperty Implements CfnGeneratedTemplatePropsMixin.ITemplateConfigurationProperty
Remarks
ExampleMetadata: fixture=_generated
Examples
// The code below shows an example of how to instantiate this type.
// The values are placeholders you should change.
using Amazon.CDK.CfnPropertyMixins.AWS.CloudFormation;
var templateConfigurationProperty = new TemplateConfigurationProperty {
DeletionPolicy = "deletionPolicy",
UpdateReplacePolicy = "updateReplacePolicy"
};
Synopsis
Constructors
| TemplateConfigurationProperty() | The configuration details of the generated template. |
Properties
| DeletionPolicy | The DeletionPolicy assigned to resources in the generated template. |
| UpdateReplacePolicy | The UpdateReplacePolicy assigned to resources in the generated template. |
Constructors
TemplateConfigurationProperty()
The configuration details of the generated template.
public TemplateConfigurationProperty()
Remarks
ExampleMetadata: fixture=_generated
Examples
// The code below shows an example of how to instantiate this type.
// The values are placeholders you should change.
using Amazon.CDK.CfnPropertyMixins.AWS.CloudFormation;
var templateConfigurationProperty = new TemplateConfigurationProperty {
DeletionPolicy = "deletionPolicy",
UpdateReplacePolicy = "updateReplacePolicy"
};
Properties
DeletionPolicy
The DeletionPolicy assigned to resources in the generated template.
public string? DeletionPolicy { get; set; }
Property Value
Remarks
UpdateReplacePolicy
The UpdateReplacePolicy assigned to resources in the generated template.
public string? UpdateReplacePolicy { get; set; }