Interface CfnStackProps

All Superinterfaces:
software.amazon.jsii.JsiiSerializable
All Known Implementing Classes:
CfnStackProps.Jsii$Proxy

@Generated(value="jsii-pacmak/1.98.0 (build 00b106d)", date="2024-05-08T21:35:01.531Z") @Stability(Stable) public interface CfnStackProps extends software.amazon.jsii.JsiiSerializable
Properties for defining a CfnStack.

Example:

 // The code below shows an example of how to instantiate this type.
 // The values are placeholders you should change.
 import software.amazon.awscdk.*;
 CfnStackProps cfnStackProps = CfnStackProps.builder()
         .notificationArns(List.of("notificationArns"))
         .parameters(Map.of(
                 "parametersKey", "parameters"))
         .tags(List.of(CfnTag.builder()
                 .key("key")
                 .value("value")
                 .build()))
         .templateUrl("templateUrl")
         .timeoutInMinutes(123)
         .build();
 

See Also:
  • Nested Class Summary

    Nested Classes
    Modifier and Type
    Interface
    Description
    static final class 
    A builder for CfnStackProps
    static final class 
    An implementation for CfnStackProps
  • Method Summary

    Modifier and Type
    Method
    Description
     
    default List<String>
    The Amazon Simple Notification Service (Amazon SNS) topic ARNs to publish stack related events.
    default Object
    The set value pairs that represent the parameters passed to CloudFormation when this nested stack is created.
    default List<CfnTag>
    Key-value pairs to associate with this stack.
    default String
    Location of file containing the template body.
    default Number
    The length of time, in minutes, that CloudFormation waits for the nested stack to reach the CREATE_COMPLETE state.

    Methods inherited from interface software.amazon.jsii.JsiiSerializable

    $jsii$toJson