@Stability(value=Stable)
public static interface CfnLaunch.ExecutionStatusObjectProperty
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.*;
ExecutionStatusObjectProperty executionStatusObjectProperty = ExecutionStatusObjectProperty.builder()
.status("status")
// the properties below are optional
.desiredState("desiredState")
.reason("reason")
.build();
| Modifier and Type | Interface and Description |
|---|---|
static class |
CfnLaunch.ExecutionStatusObjectProperty.Builder
A builder for
CfnLaunch.ExecutionStatusObjectProperty |
static class |
CfnLaunch.ExecutionStatusObjectProperty.Jsii$Proxy
An implementation for
CfnLaunch.ExecutionStatusObjectProperty |
| Modifier and Type | Method and Description |
|---|---|
static CfnLaunch.ExecutionStatusObjectProperty.Builder |
builder() |
default String |
getDesiredState()
If you are using AWS CloudFormation to stop this launch, 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 launch, this is an optional field that you can use to record why the launch is being stopped or cancelled.
|
String |
getStatus()
To start the launch now, specify `START` for this parameter.
|
@Stability(value=Stable) @NotNull String getStatus()
If this launch is currently running and you want to stop it now, specify STOP .
@Stability(value=Stable) @Nullable default String getDesiredState()
If you omit this parameter, the default of COMPLETED is used.
@Stability(value=Stable) @Nullable default String getReason()
@Stability(value=Stable) static CfnLaunch.ExecutionStatusObjectProperty.Builder builder()
Copyright © 2022. All rights reserved.