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:
-
Nested Class Summary
Modifier and TypeInterfaceDescriptionstatic final class
A builder forCfnExperiment.RunningStatusObjectProperty
static final class
An implementation forCfnExperiment.RunningStatusObjectProperty
-
Method Summary
Modifier and TypeMethodDescriptionbuilder()
default String
If you are using AWS CloudFormation to start the experiment, use this field to specify when the experiment is to end.default String
If you are using AWS CloudFormation to stop this experiment, specify eitherCOMPLETED
orCANCELLED
here to indicate how to classify this experiment.default String
If you are using AWS CloudFormation to stop this experiment, this is an optional field that you can use to record why the experiment is being stopped or cancelled.To start the experiment now, specifySTART
for this parameter.Methods inherited from interface software.amazon.jsii.JsiiSerializable
$jsii$toJson
-
Method Details
-
getStatus
To start the experiment now, specifySTART
for this parameter.If this experiment is currently running and you want to stop it now, specify
STOP
.- See Also:
-
getAnalysisCompleteTime
If you are using AWS CloudFormation to start the experiment, use this field to specify when the experiment is to end.The format is as a UNIX timestamp. For more information about this format, see The Current Epoch Unix Timestamp .
- See Also:
-
getDesiredState
If you are using AWS CloudFormation to stop this experiment, specify eitherCOMPLETED
orCANCELLED
here to indicate how to classify this experiment.- See Also:
-
getReason
If you are using AWS CloudFormation to stop this experiment, this is an optional field that you can use to record why the experiment is being stopped or cancelled.- See Also:
-
builder
-