interface TrialComponentStatusProperty
| Language | Type name |
|---|---|
.NET | Amazon.CDK.AWS.Sagemaker.CfnTrialComponent.TrialComponentStatusProperty |
Go | github.com/aws/aws-cdk-go/awscdk/v2/awssagemaker#CfnTrialComponent_TrialComponentStatusProperty |
Java | software.amazon.awscdk.services.sagemaker.CfnTrialComponent.TrialComponentStatusProperty |
Python | aws_cdk.aws_sagemaker.CfnTrialComponent.TrialComponentStatusProperty |
TypeScript | aws-cdk-lib » aws_sagemaker » CfnTrialComponent » TrialComponentStatusProperty |
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 trialComponentStatusProperty: sagemaker.CfnTrialComponent.TrialComponentStatusProperty = {
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