Interface CfnLaunch.ExecutionStatusObjectProperty

All Superinterfaces:
software.amazon.jsii.JsiiSerializable
All Known Implementing Classes:
CfnLaunch.ExecutionStatusObjectProperty.Jsii$Proxy
Enclosing class:
CfnLaunch

@Stability(Stable) public static interface CfnLaunch.ExecutionStatusObjectProperty extends software.amazon.jsii.JsiiSerializable
Use this structure to start and stop the launch.

Example:

 // The code below shows an example of how to instantiate this type.
 // The values are placeholders you should change.
 import software.amazon.awscdk.services.evidently.*;
 ExecutionStatusObjectProperty executionStatusObjectProperty = ExecutionStatusObjectProperty.builder()
         .status("status")
         // the properties below are optional
         .desiredState("desiredState")
         .reason("reason")
         .build();
 

See Also: