interface CfnExperimentTrialComponentProps
| Language | Type name |
|---|---|
.NET | Amazon.CDK.AWS.Sagemaker.CfnExperimentTrialComponentProps |
Go | github.com/aws/aws-cdk-go/awscdk/v2/awssagemaker#CfnExperimentTrialComponentProps |
Java | software.amazon.awscdk.services.sagemaker.CfnExperimentTrialComponentProps |
Python | aws_cdk.aws_sagemaker.CfnExperimentTrialComponentProps |
TypeScript | aws-cdk-lib » aws_sagemaker » CfnExperimentTrialComponentProps |
Properties for defining a CfnExperimentTrialComponent.
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 cfnExperimentTrialComponentProps: sagemaker.CfnExperimentTrialComponentProps = {
trialComponentName: 'trialComponentName',
// the properties below are optional
displayName: 'displayName',
endTime: 'endTime',
metadataProperties: {
commitId: 'commitId',
generatedBy: 'generatedBy',
projectId: 'projectId',
repository: 'repository',
},
startTime: 'startTime',
status: {
message: 'message',
primaryStatus: 'primaryStatus',
},
tags: [{
key: 'key',
value: 'value',
}],
};
Properties
| Name | Type | Description |
|---|---|---|
| trial | string | The name of the trial component. |
| display | string | The name of the component as displayed. |
| end | string | When the component ended. |
| metadata | IResolvable | Metadata | Metadata properties of the tracking entity, trial, or trial component. |
| start | string | When the component started. |
| status? | IResolvable | Status | The status of the trial component. |
| tags? | Tags[] | A list of tags to associate with the component. |
trialComponentName
Type:
string
The name of the trial component.
The name must be unique in your AWS account and is not case-sensitive.
displayName?
Type:
string
(optional)
The name of the component as displayed.
The name doesn't need to be unique. If DisplayName isn't specified, TrialComponentName is displayed.
endTime?
Type:
string
(optional)
When the component ended.
metadataProperties?
Type:
IResolvable | Metadata
(optional)
Metadata properties of the tracking entity, trial, or trial component.
startTime?
Type:
string
(optional)
When the component started.
status?
Type:
IResolvable | Status
(optional)
The status of the trial component.
tags?
Type:
Tags[]
(optional)
A list of tags to associate with the component.

.NET
Go
Java
Python
TypeScript