Package software.amazon.awscdk
Interface ITemplateOptions
- All Superinterfaces:
software.amazon.jsii.JsiiSerializable
- All Known Subinterfaces:
ITemplateOptions.Jsii$Default
- All Known Implementing Classes:
ITemplateOptions.Jsii$Proxy
@Generated(value="jsii-pacmak/1.104.0 (build e79254c)",
date="2024-12-11T23:26:27.560Z")
@Stability(Stable)
public interface ITemplateOptions
extends software.amazon.jsii.JsiiSerializable
CloudFormation template options for a stack.
-
Nested Class Summary
Modifier and TypeInterfaceDescriptionstatic interface
Internal default implementation forITemplateOptions
.static final class
A proxy class which represents a concrete javascript instance of this type. -
Method Summary
Modifier and TypeMethodDescriptiondefault String
Gets or sets the description of this stack.Metadata associated with the CloudFormation template.default String
Gets or sets the AWSTemplateFormatVersion field of the CloudFormation template.Gets or sets the top-level template transform(s) for this stack (e.g.default void
setDescription
(String value) Gets or sets the description of this stack.default void
setMetadata
(Map<String, Object> value) Metadata associated with the CloudFormation template.default void
setTemplateFormatVersion
(String value) Gets or sets the AWSTemplateFormatVersion field of the CloudFormation template.default void
setTransforms
(List<String> value) Gets or sets the top-level template transform(s) for this stack (e.g.Methods inherited from interface software.amazon.jsii.JsiiSerializable
$jsii$toJson
-
Method Details
-
getDescription
Gets or sets the description of this stack.If provided, it will be included in the CloudFormation template's "Description" attribute.
-
setDescription
Gets or sets the description of this stack.If provided, it will be included in the CloudFormation template's "Description" attribute.
-
getMetadata
Metadata associated with the CloudFormation template. -
setMetadata
Metadata associated with the CloudFormation template. -
getTemplateFormatVersion
Gets or sets the AWSTemplateFormatVersion field of the CloudFormation template. -
setTemplateFormatVersion
Gets or sets the AWSTemplateFormatVersion field of the CloudFormation template. -
getTransforms
Gets or sets the top-level template transform(s) for this stack (e.g.["AWS::Serverless-2016-10-31"]
). -
setTransforms
Gets or sets the top-level template transform(s) for this stack (e.g.["AWS::Serverless-2016-10-31"]
).
-