interface CfnExperimentTrialComponentMixinProps
| Language | Type name |
|---|---|
.NET | Amazon.CDK.CfnPropertyMixins.AWS.SageMaker.CfnExperimentTrialComponentMixinProps |
Go | github.com/aws/aws-cdk-go/awscdkcfnpropertymixins/v2/awssagemaker#CfnExperimentTrialComponentMixinProps |
Java | software.amazon.awscdk.cfnpropertymixins.services.sagemaker.CfnExperimentTrialComponentMixinProps |
Python | aws_cdk.cfn_property_mixins.aws_sagemaker.CfnExperimentTrialComponentMixinProps |
TypeScript | @aws-cdk/cfn-property-mixins » aws_sagemaker » CfnExperimentTrialComponentMixinProps |
Properties for CfnExperimentTrialComponentPropsMixin.
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/cfn-property-mixins';
const cfnExperimentTrialComponentMixinProps: sagemaker.CfnExperimentTrialComponentMixinProps = {
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',
}],
trialComponentName: 'trialComponentName',
};
Properties
| Name | Type | Description |
|---|---|---|
| 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. |
| trial | string | The name of the trial component. |
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.
trialComponentName?
Type:
string
(optional)
The name of the trial component.
The name must be unique in your AWS account and is not case-sensitive.

.NET
Go
Java
Python
TypeScript