aws-cdk-lib.aws_evidently.CfnLaunch.ExecutionStatusObjectProperty

interface ExecutionStatusObjectProperty

LanguageType name
.NETAmazon.CDK.AWS.Evidently.CfnLaunch.ExecutionStatusObjectProperty
Gogithub.com/aws/aws-cdk-go/awscdk/v2/awsevidently#CfnLaunch_ExecutionStatusObjectProperty
Javasoftware.amazon.awscdk.services.evidently.CfnLaunch.ExecutionStatusObjectProperty
Pythonaws_cdk.aws_evidently.CfnLaunch.ExecutionStatusObjectProperty
TypeScript aws-cdk-lib » aws_evidently » CfnLaunch » 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 { aws_evidently as evidently } from 'aws-cdk-lib';
const executionStatusObjectProperty: evidently.CfnLaunch.ExecutionStatusObjectProperty = {
  status: 'status',

  // the properties below are optional
  desiredState: 'desiredState',
  reason: 'reason',
};

Properties

NameTypeDescription
statusstringTo start the launch now, specify START for this parameter.
desiredState?stringIf you are using AWS CloudFormation to stop this launch, specify either COMPLETED or CANCELLED here to indicate how to classify this experiment.
reason?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.

status

Type: string

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 .


desiredState?

Type: string (optional)

If you are using AWS 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 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.