@Generated(value="jsii-pacmak/1.54.0 (build b1b977a)", date="2022-03-01T02:28:55.710Z") @Stability(value=Stable) public interface CfnResourceSignal 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.*; CfnResourceSignal cfnResourceSignal = CfnResourceSignal.builder() .count(123) .timeout("timeout") .build();
Modifier and Type | Interface and Description |
---|---|
static class |
CfnResourceSignal.Builder
A builder for
CfnResourceSignal |
static class |
CfnResourceSignal.Jsii$Proxy
An implementation for
CfnResourceSignal |
Modifier and Type | Method and Description |
---|---|
static CfnResourceSignal.Builder |
builder() |
default Number |
getCount()
The number of success signals AWS CloudFormation must receive before it sets the resource status as CREATE_COMPLETE.
|
default String |
getTimeout()
The length of time that AWS CloudFormation waits for the number of signals that was specified in the Count property.
|
@Stability(value=Stable) @Nullable default Number getCount()
If the resource receives a failure signal or doesn't receive the specified number of signals before the timeout period expires, the resource creation fails and AWS CloudFormation rolls the stack back.
@Stability(value=Stable) @Nullable default String getTimeout()
The timeout period starts after AWS CloudFormation starts creating the resource, and the timeout expires no sooner than the time you specify but can occur shortly thereafter. The maximum time that you can specify is 12 hours.
@Stability(value=Stable) static CfnResourceSignal.Builder builder()
CfnResourceSignal.Builder
of CfnResourceSignal
Copyright © 2022. All rights reserved.