@Generated(value="jsii-pacmak/1.67.0 (build 2c027f5)", date="2022-09-07T23:47:01.897Z") @Stability(value=Deprecated) @Deprecated public interface NestedStackProps extends software.amazon.jsii.JsiiSerializable
Example:
// The code below shows an example of how to instantiate this type.
// The values are placeholders you should change.
import software.amazon.awscdk.core.*;
import software.amazon.awscdk.services.cloudformation.*;
import software.amazon.awscdk.services.sns.*;
Duration duration;
Topic topic;
NestedStackProps nestedStackProps = NestedStackProps.builder()
.notifications(List.of(topic))
.parameters(Map.of(
"parametersKey", "parameters"))
.timeout(duration)
.build();
| Modifier and Type | Interface and Description |
|---|---|
static class |
NestedStackProps.Builder
Deprecated.
|
static class |
NestedStackProps.Jsii$Proxy
Deprecated.
|
| Modifier and Type | Method and Description |
|---|---|
static NestedStackProps.Builder |
builder()
Deprecated.
|
default List<ITopic> |
getNotifications()
Deprecated.
|
default Map<String,String> |
getParameters()
Deprecated.
|
default Duration |
getTimeout()
Deprecated.
|
@Stability(value=Deprecated) @Deprecated @Nullable default List<ITopic> getNotifications()
Default: - notifications are not sent for this stack.
@Stability(value=Deprecated) @Deprecated @Nullable default Map<String,String> getParameters()
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.
The nested stack construct will automatically synthesize parameters in order to bind references from the parent stack(s) into the nested stack.
Default: - no user-defined parameters are passed to the nested stack
@Stability(value=Deprecated) @Deprecated @Nullable default Duration getTimeout()
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.
Default: - no timeout
@Stability(value=Deprecated) @Deprecated static NestedStackProps.Builder builder()
NestedStackProps.Builder of NestedStackPropsCopyright © 2022. All rights reserved.