Class CfnStack.Builder
- All Implemented Interfaces:
software.amazon.jsii.Builder<CfnStack>
- Enclosing class:
CfnStack
CfnStack.-
Method Summary
Modifier and TypeMethodDescriptionbuild()static CfnStack.BuildernotificationArns(List<String> notificationArns) The Amazon SNS topic ARNs to publish stack related events.parameters(Map<String, String> parameters) The set value pairs that represent the parameters passed to CloudFormation when this nested stack is created.parameters(IResolvable parameters) The set value pairs that represent the parameters passed to CloudFormation when this nested stack is created.Key-value pairs to associate with this stack.templateUrl(String templateUrl) The URL of a file that contains the template body.timeoutInMinutes(Number timeoutInMinutes) The length of time, in minutes, that CloudFormation waits for the nested stack to reach theCREATE_COMPLETEstate.
-
Method Details
-
create
@Stability(Stable) public static CfnStack.Builder create(software.constructs.Construct scope, String id) - Parameters:
scope- Scope in which this resource is defined. This parameter is required.id- Construct identifier for this resource (unique in its scope). This parameter is required.- Returns:
- a new instance of
CfnStack.Builder.
-
notificationArns
The 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 SNS topic ARNs to publish stack related events. This parameter is required.- Returns:
this- See Also:
-
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
Reffunction to pass a parameter value to a nested stack, comma-delimited list parameters must be of typeString. In other words, you can't pass values that are of typeCommaDelimitedListto nested stacks.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- See Also:
-
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
Reffunction to pass a parameter value to a nested stack, comma-delimited list parameters must be of typeString. In other words, you can't pass values that are of typeCommaDelimitedListto nested stacks.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- See Also:
-
tags
Key-value pairs to associate with this stack.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- See Also:
-
templateUrl
The URL of a file that contains the template body.The URL must point to a template (max size: 1 MB) that's located in an Amazon S3 bucket. The location for an Amazon S3 bucket must start with
https://.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- The URL of a file that contains the template body. This parameter is required.- Returns:
this- See Also:
-
timeoutInMinutes
The length of time, in minutes, that CloudFormation waits for the nested stack to reach theCREATE_COMPLETEstate.The default is no timeout. When CloudFormation detects that the nested stack has reached the
CREATE_COMPLETEstate, it marks the nested stack resource asCREATE_COMPLETEin the parent stack and resumes creating the parent stack. If the timeout period expires before the nested stack reachesCREATE_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 theCREATE_COMPLETEstate. This parameter is required.- Returns:
this- See Also:
-
build
-