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:
-
Nested Class Summary
Nested ClassesModifier and TypeInterfaceDescriptionstatic final classA builder forCfnLaunch.ExecutionStatusObjectPropertystatic final classAn implementation forCfnLaunch.ExecutionStatusObjectProperty -
Method Summary
Modifier and TypeMethodDescriptionbuilder()default StringIf you are using AWS CloudFormation to stop this launch, specify eitherCOMPLETEDorCANCELLEDhere to indicate how to classify this experiment.default StringIf 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.To start the launch now, specifySTARTfor this parameter.Methods inherited from interface software.amazon.jsii.JsiiSerializable
$jsii$toJson
-
Method Details
-
getStatus
To start the launch now, specifySTARTfor this parameter.If this launch is currently running and you want to stop it now, specify
STOP.- See Also:
-
getDesiredState
If you are using AWS CloudFormation to stop this launch, specify eitherCOMPLETEDorCANCELLEDhere to indicate how to classify this experiment.If you omit this parameter, the default of
COMPLETEDis used.- See Also:
-
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.- See Also:
-
builder
-