Show / Hide Table of Contents

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. ["AWS::Serverless-2016-10-31"]).

Properties

Description

Gets or sets the description of this stack.

string? Description { get; set; }
Property Value

string

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

IDictionary<string, object>

TemplateFormatVersion

Gets or sets the AWSTemplateFormatVersion field of the CloudFormation template.

string? TemplateFormatVersion { get; set; }
Property Value

string

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[]

Back to top Generated by DocFX