@Stability(value=Stable)
public static interface CfnExperiment.RunningStatusObjectProperty
extends software.amazon.jsii.JsiiSerializable
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()
.analysisCompleteTime("analysisCompleteTime")
.desiredState("desiredState")
.reason("reason")
.status("status")
.build();
| Modifier and Type | Interface and Description |
|---|---|
static class |
CfnExperiment.RunningStatusObjectProperty.Builder
A builder for
CfnExperiment.RunningStatusObjectProperty |
static class |
CfnExperiment.RunningStatusObjectProperty.Jsii$Proxy
An implementation for
CfnExperiment.RunningStatusObjectProperty |
| Modifier and Type | Method and Description |
|---|---|
static CfnExperiment.RunningStatusObjectProperty.Builder |
builder() |
default String |
getAnalysisCompleteTime()
If you are using AWS CloudFormation to start the experiment, use this field to specify when the experiment is to end.
|
default String |
getDesiredState()
If you are using AWS CloudFormation to stop this experiment, specify either `COMPLETED` or `CANCELLED` here to indicate how to classify this experiment.
|
default String |
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.
|
default String |
getStatus()
To start the experiment now, specify `START` for this parameter.
|
@Stability(value=Stable) @Nullable default String getAnalysisCompleteTime()
The format is as a UNIX timestamp. For more information about this format, see The Current Epoch Unix Timestamp .
@Stability(value=Stable) @Nullable default String getDesiredState()
@Stability(value=Stable) @Nullable default String getReason()
@Stability(value=Stable) @Nullable default String getStatus()
If this experiment is currently running and you want to stop it now, specify STOP .
@Stability(value=Stable) static CfnExperiment.RunningStatusObjectProperty.Builder builder()
Copyright © 2022. All rights reserved.