Class CfnStack.Builder

java.lang.Object
software.amazon.awscdk.services.cloudformation.CfnStack.Builder
All Implemented Interfaces:
software.amazon.jsii.Builder<CfnStack>
Enclosing class:
CfnStack

@Stability(Stable) public static final class CfnStack.Builder extends Object implements software.amazon.jsii.Builder<CfnStack>
A fluent builder for CfnStack.
  • Method Details

    • create

      @Stability(Stable) public static CfnStack.Builder create(Construct scope, String id)
      Parameters:
      scope -
      • scope in which this resource is defined.
      This parameter is required.
      id -
      • scoped id of the resource.
      This parameter is required.
      Returns:
      a new instance of CfnStack.Builder.
    • templateUrl

      @Stability(Stable) public CfnStack.Builder templateUrl(String templateUrl)
      Location of file containing the template body.

      The URL must point to a template (max size: 460,800 bytes) that's located in an Amazon S3 bucket. For more information, see Template anatomy .

      Whether an update causes interruptions depends on the resources that are being updated. An update never causes a nested stack to be replaced.

      Parameters:
      templateUrl - Location of file containing the template body. This parameter is required.
      Returns:
      this
    • notificationArns

      @Stability(Stable) public CfnStack.Builder notificationArns(List<String> notificationArns)
      The Amazon Simple Notification Service (Amazon SNS) topic ARNs to publish stack related events.

      You can find your Amazon SNS topic ARNs using the Amazon SNS console or your Command Line Interface (CLI).

      Parameters:
      notificationArns - The Amazon Simple Notification Service (Amazon SNS) topic ARNs to publish stack related events. This parameter is required.
      Returns:
      this
    • parameters

      @Stability(Stable) public CfnStack.Builder parameters(IResolvable parameters)
      The set value pairs that represent the parameters passed to CloudFormation when this nested stack is created.

      Each parameter has a name corresponding to a parameter defined in the embedded template and a value representing the value that you want to set for the parameter.

      If you use the Ref function to pass a parameter value to a nested stack, comma-delimited list parameters must be of type String . In other words, you can't pass values that are of type CommaDelimitedList to nested stacks.

      Conditional. Required if the nested stack requires input parameters.

      Whether an update causes interruptions depends on the resources that are being updated. An update never causes a nested stack to be replaced.

      Parameters:
      parameters - The set value pairs that represent the parameters passed to CloudFormation when this nested stack is created. This parameter is required.
      Returns:
      this
    • parameters

      @Stability(Stable) public CfnStack.Builder parameters(Map<String,String> parameters)
      The set value pairs that represent the parameters passed to CloudFormation when this nested stack is created.

      Each parameter has a name corresponding to a parameter defined in the embedded template and a value representing the value that you want to set for the parameter.

      If you use the Ref function to pass a parameter value to a nested stack, comma-delimited list parameters must be of type String . In other words, you can't pass values that are of type CommaDelimitedList to nested stacks.

      Conditional. Required if the nested stack requires input parameters.

      Whether an update causes interruptions depends on the resources that are being updated. An update never causes a nested stack to be replaced.

      Parameters:
      parameters - The set value pairs that represent the parameters passed to CloudFormation when this nested stack is created. This parameter is required.
      Returns:
      this
    • tags

      @Stability(Stable) public CfnStack.Builder tags(List<? extends CfnTag> tags)
      Key-value pairs to associate with this stack.

      AWS CloudFormation also propagates these tags to the resources created in the stack. A maximum number of 50 tags can be specified.

      Parameters:
      tags - Key-value pairs to associate with this stack. This parameter is required.
      Returns:
      this
    • timeoutInMinutes

      @Stability(Stable) public CfnStack.Builder timeoutInMinutes(Number timeoutInMinutes)
      The length of time, in minutes, that CloudFormation waits for the nested stack to reach the CREATE_COMPLETE state.

      The default is no timeout. When CloudFormation detects that the nested stack has reached the CREATE_COMPLETE state, it marks the nested stack resource as CREATE_COMPLETE in the parent stack and resumes creating the parent stack. If the timeout period expires before the nested stack reaches CREATE_COMPLETE , CloudFormation marks the nested stack as failed and rolls back both the nested stack and parent stack.

      Updates aren't supported.

      Parameters:
      timeoutInMinutes - The length of time, in minutes, that CloudFormation waits for the nested stack to reach the CREATE_COMPLETE state. This parameter is required.
      Returns:
      this
    • build

      @Stability(Stable) public CfnStack build()
      Specified by:
      build in interface software.amazon.jsii.Builder<CfnStack>
      Returns:
      a newly built instance of CfnStack.