interface CfnTrialComponentMixinProps
| Language | Type name |
|---|---|
.NET | Amazon.CDK.CfnPropertyMixins.AWS.SageMaker.CfnTrialComponentMixinProps |
Go | github.com/aws/aws-cdk-go/awscdkcfnpropertymixins/v2/awssagemaker#CfnTrialComponentMixinProps |
Java | software.amazon.awscdk.cfnpropertymixins.services.sagemaker.CfnTrialComponentMixinProps |
Python | aws_cdk.cfn_property_mixins.aws_sagemaker.CfnTrialComponentMixinProps |
TypeScript | @aws-cdk/cfn-property-mixins » aws_sagemaker » CfnTrialComponentMixinProps |
Properties for CfnTrialComponentPropsMixin.
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 cfnTrialComponentMixinProps: sagemaker.CfnTrialComponentMixinProps = {
displayName: 'displayName',
inputArtifacts: {
inputArtifactsKey: {
mediaType: 'mediaType',
value: 'value',
},
},
metadataProperties: {
commitId: 'commitId',
generatedBy: 'generatedBy',
projectId: 'projectId',
repository: 'repository',
},
outputArtifacts: {
outputArtifactsKey: {
mediaType: 'mediaType',
value: 'value',
},
},
parameters: {
parametersKey: {
numberValue: 123,
stringValue: 'stringValue',
},
},
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. |
| input | IResolvable | { [string]: IResolvable | Trial } | The input artifacts for the component. |
| metadata | IResolvable | Metadata | Metadata properties of the tracking entity, trial, or trial component. |
| output | IResolvable | { [string]: IResolvable | Trial } | The output artifacts for the component. |
| parameters? | IResolvable | { [string]: IResolvable | Trial } | The hyperparameters for the component. |
| status? | IResolvable | Trial | The status of the trial component. |
| tags? | Tags[] | A list of tags to associate with the trial component. |
| trial | string | The name of the trial component. |
displayName?
Type:
string
(optional)
The name of the component as displayed.
If DisplayName isn't specified, TrialComponentName is displayed.
inputArtifacts?
Type:
IResolvable | { [string]: IResolvable | Trial }
(optional)
The input artifacts for the component.
metadataProperties?
Type:
IResolvable | Metadata
(optional)
Metadata properties of the tracking entity, trial, or trial component.
outputArtifacts?
Type:
IResolvable | { [string]: IResolvable | Trial }
(optional)
The output artifacts for the component.
parameters?
Type:
IResolvable | { [string]: IResolvable | Trial }
(optional)
The hyperparameters for the component.
status?
Type:
IResolvable | Trial
(optional)
The status of the trial component.
tags?
Type:
Tags[]
(optional)
A list of tags to associate with the trial component.
trialComponentName?
Type:
string
(optional)
The name of the trial component.
Must be unique in your AWS account and is not case-sensitive.

.NET
Go
Java
Python
TypeScript