Interface ITemplateOptions
CloudFormation template options for a stack.
Namespace: Amazon.CDK
Assembly: Amazon.CDK.Lib.dll
Syntax (csharp)
public interface ITemplateOptions
Syntax (vb)
Public Interface ITemplateOptions
Synopsis
Properties
| Description | Gets or sets the description of this stack. |
| Metadata | Metadata associated with the CloudFormation template. |
| TemplateFormatVersion | Gets or sets the AWSTemplateFormatVersion field of the CloudFormation template. |
| Transforms | Gets or sets the top-level template transform(s) for this stack (e.g. |
Properties
Description
Gets or sets the description of this stack.
string? Description { get; set; }
Property Value
Remarks
If provided, it will be included in the CloudFormation template's "Description" attribute.
Metadata
Metadata associated with the CloudFormation template.
IDictionary<string, object>? Metadata { get; set; }
Property Value
TemplateFormatVersion
Gets or sets the AWSTemplateFormatVersion field of the CloudFormation template.
string? TemplateFormatVersion { get; set; }
Property Value
Transforms
Gets or sets the top-level template transform(s) for this stack (e.g. ["AWS::Serverless-2016-10-31"]).
string[]? Transforms { get; set; }
Property Value
string[]