Interface WaiterStateMachineProps

All Superinterfaces:
software.amazon.jsii.JsiiSerializable, WaiterStateMachineOptions
All Known Implementing Classes:
WaiterStateMachineProps.Jsii$Proxy

@Generated(value="jsii-pacmak/1.104.0 (build e79254c)", date="2024-12-27T17:02:11.922Z") @Stability(Experimental) public interface WaiterStateMachineProps extends software.amazon.jsii.JsiiSerializable, WaiterStateMachineOptions
(experimental) Props for creating a WaiterStateMachine.

Example:

 // The code below shows an example of how to instantiate this type.
 // The values are placeholders you should change.
 import software.amazon.awscdk.integtests.alpha.*;
 import software.amazon.awscdk.*;
 WaiterStateMachineProps waiterStateMachineProps = WaiterStateMachineProps.builder()
         .backoffRate(123)
         .interval(Duration.minutes(30))
         .totalTimeout(Duration.minutes(30))
         .build();