@Generated(value="jsii-pacmak/1.60.0 (build ebcefe6)",
date="2022-06-22T23:27:49.120Z")
public interface AwsCloudFormationStackProperties
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();
Modifier and Type | Interface and Description |
---|---|
static class |
AwsCloudFormationStackProperties.Builder
A builder for
AwsCloudFormationStackProperties |
static class |
AwsCloudFormationStackProperties.Jsii$Proxy
An implementation for
AwsCloudFormationStackProperties |
Modifier and Type | Method and Description |
---|---|
static AwsCloudFormationStackProperties.Builder |
builder() |
default java.util.Map<java.lang.String,java.lang.String> |
getParameters()
Values for CloudFormation stack parameters that should be passed when the stack is deployed.
|
default java.lang.String |
getStackName()
The name to use for the CloudFormation stack.
|
java.lang.String |
getTemplateFile()
A file relative to the assembly root which contains the CloudFormation template for this stack.
|
default java.lang.Boolean |
getTerminationProtection()
Whether to enable termination protection for this stack.
|
java.lang.String getTemplateFile()
default java.util.Map<java.lang.String,java.lang.String> getParameters()
default java.lang.String getStackName()
Default: - name derived from artifact ID
default java.lang.Boolean getTerminationProtection()
Default: false
static AwsCloudFormationStackProperties.Builder builder()