Interface CfnExperiment.RunningStatusObjectProperty

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

@Stability(Stable) public static interface CfnExperiment.RunningStatusObjectProperty extends software.amazon.jsii.JsiiSerializable
Use this structure to start and stop the experiment.

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.*;
 RunningStatusObjectProperty runningStatusObjectProperty = RunningStatusObjectProperty.builder()
         .status("status")
         // the properties below are optional
         .analysisCompleteTime("analysisCompleteTime")
         .desiredState("desiredState")
         .reason("reason")
         .build();
 

See Also: