interface ITemplateOptions
Language | Type name |
---|---|
![]() | Amazon.CDK.ITemplateOptions |
![]() | software.amazon.awscdk.core.ITemplateOptions |
![]() | aws_cdk.core.ITemplateOptions |
![]() | @aws-cdk/core » 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. |
transform? | string | Gets or sets the top-level template transform for this stack (e.g. "AWS::Serverless-2016-10-31"). |
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.
transform?
⚠️ Deprecated: use transforms
instead.
Type:
string
(optional)
Gets or sets the top-level template transform for this stack (e.g. "AWS::Serverless-2016-10-31").
transforms?
Type:
string[]
(optional)
Gets or sets the top-level template transform(s) for this stack (e.g. ["AWS::Serverless-2016-10-31"]
).