Package software.amazon.awscdk.cxapi
Interface AwsCloudFormationStackProperties
- All Superinterfaces:
software.amazon.jsii.JsiiSerializable
- All Known Implementing Classes:
AwsCloudFormationStackProperties.Jsii$Proxy
@Generated(value="jsii-pacmak/1.104.0 (build e79254c)",
date="2024-11-06T23:25:18.443Z")
@Stability(Stable)
public interface AwsCloudFormationStackProperties
extends software.amazon.jsii.JsiiSerializable
Artifact properties for CloudFormation stacks.
Example:
// The code below shows an example of how to instantiate this type. // The values are placeholders you should change. import software.amazon.awscdk.cxapi.*; AwsCloudFormationStackProperties awsCloudFormationStackProperties = AwsCloudFormationStackProperties.builder() .templateFile("templateFile") // the properties below are optional .parameters(Map.of( "parametersKey", "parameters")) .stackName("stackName") .terminationProtection(false) .build();
-
Nested Class Summary
Modifier and TypeInterfaceDescriptionstatic final class
A builder forAwsCloudFormationStackProperties
static final class
An implementation forAwsCloudFormationStackProperties
-
Method Summary
Modifier and TypeMethodDescriptionbuilder()
Values for CloudFormation stack parameters that should be passed when the stack is deployed.default String
The name to use for the CloudFormation stack.A file relative to the assembly root which contains the CloudFormation template for this stack.default Boolean
Whether to enable termination protection for this stack.Methods inherited from interface software.amazon.jsii.JsiiSerializable
$jsii$toJson
-
Method Details
-
getTemplateFile
A file relative to the assembly root which contains the CloudFormation template for this stack. -
getParameters
Values for CloudFormation stack parameters that should be passed when the stack is deployed. -
getStackName
The name to use for the CloudFormation stack.Default: - name derived from artifact ID
-
getTerminationProtection
Whether to enable termination protection for this stack.Default: false
-
builder
-