interface StatusProperty
| Language | Type name |
|---|---|
.NET | Amazon.CDK.AWS.Sagemaker.CfnExperimentTrialComponent.StatusProperty |
Go | github.com/aws/aws-cdk-go/awscdk/v2/awssagemaker#CfnExperimentTrialComponent_StatusProperty |
Java | software.amazon.awscdk.services.sagemaker.CfnExperimentTrialComponent.StatusProperty |
Python | aws_cdk.aws_sagemaker.CfnExperimentTrialComponent.StatusProperty |
TypeScript | aws-cdk-lib » aws_sagemaker » CfnExperimentTrialComponent » StatusProperty |
The status of the trial component.
Example
// The code below shows an example of how to instantiate this type.
// The values are placeholders you should change.
import { aws_sagemaker as sagemaker } from 'aws-cdk-lib';
const statusProperty: sagemaker.CfnExperimentTrialComponent.StatusProperty = {
message: 'message',
primaryStatus: 'primaryStatus',
};
Properties
| Name | Type | Description |
|---|---|---|
| message? | string | If the component failed, a message describing why. |
| primary | string | The status of the trial component. |
message?
Type:
string
(optional)
If the component failed, a message describing why.
primaryStatus?
Type:
string
(optional)
The status of the trial component.

.NET
Go
Java
Python
TypeScript