aws-cdk-lib.aws_evidently.CfnExperiment.RunningStatusObjectProperty

interface RunningStatusObjectProperty

LanguageType name
.NETAmazon.CDK.AWS.Evidently.CfnExperiment.RunningStatusObjectProperty
Gogithub.com/aws/aws-cdk-go/awscdk/v2/awsevidently#CfnExperiment_RunningStatusObjectProperty
Javasoftware.amazon.awscdk.services.evidently.CfnExperiment.RunningStatusObjectProperty
Pythonaws_cdk.aws_evidently.CfnExperiment.RunningStatusObjectProperty
TypeScript aws-cdk-lib » aws_evidently » CfnExperiment » RunningStatusObjectProperty

Use this structure to start and stop the experiment.

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 runningStatusObjectProperty: evidently.CfnExperiment.RunningStatusObjectProperty = {
  status: 'status',

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

Properties

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

status

Type: string

To start the experiment now, specify START for this parameter.

If this experiment is currently running and you want to stop it now, specify STOP .


analysisCompleteTime?

Type: string (optional)

If you are using AWS CloudFormation to start the experiment, use this field to specify when the experiment is to end.

The format is as a UNIX timestamp. For more information about this format, see The Current Epoch Unix Timestamp .


desiredState?

Type: string (optional)

If you are using AWS CloudFormation to stop this experiment, specify either COMPLETED or CANCELLED here to indicate how to classify this experiment.


reason?

Type: string (optional)

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.