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.126.0 (build 206d44b)",
date="2026-02-09T14:39:21.379Z")
@Stability(Deprecated)
@Deprecated
public interface AwsCloudFormationStackProperties
extends software.amazon.jsii.JsiiSerializable
Deprecated.
(deprecated) 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
Nested ClassesModifier and TypeInterfaceDescriptionstatic final classDeprecated.static final classDeprecated. -
Method Summary
Methods inherited from interface software.amazon.jsii.JsiiSerializable
$jsii$toJson
-
Method Details
-
getTemplateFile
Deprecated.(deprecated) A file relative to the assembly root which contains the CloudFormation template for this stack. -
getParameters
Deprecated.(deprecated) Values for CloudFormation stack parameters that should be passed when the stack is deployed. -
getStackName
Deprecated.(deprecated) The name to use for the CloudFormation stack.Default: - name derived from artifact ID
-
getTerminationProtection
Deprecated.(deprecated) Whether to enable termination protection for this stack.Default: false
-
builder
Deprecated.
-
@aws-cdk/cloud-assembly-api.