Interface CfnWaitConditionProps

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

@Generated(value="jsii-pacmak/1.84.0 (build 5404dcf)", date="2023-06-19T16:29:54.976Z") @Stability(Stable) public interface CfnWaitConditionProps extends software.amazon.jsii.JsiiSerializable
Properties for defining a CfnWaitCondition.

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.*;
 CfnWaitConditionProps cfnWaitConditionProps = CfnWaitConditionProps.builder()
         .count(123)
         .handle("handle")
         .timeout("timeout")
         .build();
 
  • Method Details

    • getCount

      @Stability(Stable) @Nullable default Number getCount()
      The number of success signals that CloudFormation must receive before it continues the stack creation process.

      When the wait condition receives the requisite number of success signals, CloudFormation resumes the creation of the stack. If the wait condition doesn't receive the specified number of success signals before the Timeout period expires, CloudFormation assumes that the wait condition has failed and rolls the stack back.

      Updates aren't supported.

    • getHandle

      @Stability(Stable) @Nullable default String getHandle()
      A reference to the wait condition handle used to signal this wait condition.

      Use the Ref intrinsic function to specify an AWS::CloudFormation::WaitConditionHandle resource.

      Anytime you add a WaitCondition resource during a stack update, you must associate the wait condition with a new WaitConditionHandle resource. Don't reuse an old wait condition handle that has already been defined in the template. If you reuse a wait condition handle, the wait condition might evaluate old signals from a previous create or update stack command.

      Updates aren't supported.

    • getTimeout

      @Stability(Stable) @Nullable default String getTimeout()
      The length of time (in seconds) to wait for the number of signals that the Count property specifies.

      Timeout is a minimum-bound property, meaning the timeout occurs no sooner than the time you specify, but can occur shortly thereafter. The maximum time that can be specified for this property is 12 hours (43200 seconds).

      Updates aren't supported.

    • builder

      @Stability(Stable) static CfnWaitConditionProps.Builder builder()
      Returns:
      a CfnWaitConditionProps.Builder of CfnWaitConditionProps