interface ExecutionStatusObjectProperty
| Language | Type name |
|---|---|
.NET | Amazon.CDK.Mixins.Preview.AWS.Evidently.Mixins.CfnLaunchPropsMixin.ExecutionStatusObjectProperty |
Go | github.com/aws/aws-cdk-go/awscdkmixinspreview/v2/awsevidently/mixins#CfnLaunchPropsMixin_ExecutionStatusObjectProperty |
Java | software.amazon.awscdk.mixins.preview.services.evidently.mixins.CfnLaunchPropsMixin.ExecutionStatusObjectProperty |
Python | aws_cdk.mixins_preview.aws_evidently.mixins.CfnLaunchPropsMixin.ExecutionStatusObjectProperty |
TypeScript | @aws-cdk/mixins-preview » aws_evidently » mixins » CfnLaunchPropsMixin » ExecutionStatusObjectProperty |
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 { mixins as evidently_mixins } from '@aws-cdk/mixins-preview/aws-evidently';
const executionStatusObjectProperty: evidently_mixins.CfnLaunchPropsMixin.ExecutionStatusObjectProperty = {
desiredState: 'desiredState',
reason: 'reason',
status: 'status',
};
Properties
| Name | Type | Description |
|---|---|---|
| desired | string | If you are using CloudFormation to stop this launch, specify either COMPLETED or CANCELLED here to indicate how to classify this experiment. |
| reason? | string | If you are using CloudFormation to stop this launch, this is an optional field that you can use to record why the launch is being stopped or cancelled. |
| status? | string | To start the launch now, specify START for this parameter. |
desiredState?
Type:
string
(optional)
If you are using CloudFormation to stop this launch, specify either COMPLETED or CANCELLED here to indicate how to classify this experiment.
If you omit this parameter, the default of COMPLETED is used.
reason?
Type:
string
(optional)
If you are using CloudFormation to stop this launch, this is an optional field that you can use to record why the launch is being stopped or cancelled.
status?
Type:
string
(optional)
To start the launch now, specify START for this parameter.
If this launch is currently running and you want to stop it now, specify STOP .

.NET
Go
Java
Python
TypeScript