interface ITemplateOptions
Language | Type name |
---|---|
.NET | Amazon.CDK.ITemplateOptions |
Go | github.com/aws/aws-cdk-go/awscdk/v2#ITemplateOptions |
Java | software.amazon.awscdk.ITemplateOptions |
Python | aws_cdk.ITemplateOptions |
TypeScript (source) | aws-cdk-lib » ITemplateOptions |
CloudFormation template options for a stack.
Properties
Name | Type | Description |
---|---|---|
description? | string | Gets or sets the description of this stack. |
metadata? | { [string]: any } | Metadata associated with the CloudFormation template. |
template | string | Gets or sets the AWSTemplateFormatVersion field of the CloudFormation template. |
transforms? | string[] | Gets or sets the top-level template transform(s) for this stack (e.g. ["AWS::Serverless-2016-10-31"] ). |
description?
Type:
string
(optional)
Gets or sets the description of this stack.
If provided, it will be included in the CloudFormation template's "Description" attribute.
metadata?
Type:
{ [string]: any }
(optional)
Metadata associated with the CloudFormation template.
templateFormatVersion?
Type:
string
(optional)
Gets or sets the AWSTemplateFormatVersion field of the CloudFormation template.
transforms?
Type:
string[]
(optional)
Gets or sets the top-level template transform(s) for this stack (e.g. ["AWS::Serverless-2016-10-31"]
).