interface TrialComponentArtifactProperty
| Language | Type name |
|---|---|
.NET | Amazon.CDK.AWS.Sagemaker.CfnTrialComponent.TrialComponentArtifactProperty |
Go | github.com/aws/aws-cdk-go/awscdk/v2/awssagemaker#CfnTrialComponent_TrialComponentArtifactProperty |
Java | software.amazon.awscdk.services.sagemaker.CfnTrialComponent.TrialComponentArtifactProperty |
Python | aws_cdk.aws_sagemaker.CfnTrialComponent.TrialComponentArtifactProperty |
TypeScript | aws-cdk-lib » aws_sagemaker » CfnTrialComponent » TrialComponentArtifactProperty |
Represents an input or output artifact of a 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 trialComponentArtifactProperty: sagemaker.CfnTrialComponent.TrialComponentArtifactProperty = {
value: 'value',
// the properties below are optional
mediaType: 'mediaType',
};
Properties
| Name | Type | Description |
|---|---|---|
| value | string | The location of the artifact. |
| media | string | The media type of the artifact. |
value
Type:
string
The location of the artifact.
mediaType?
Type:
string
(optional)
The media type of the artifact.

.NET
Go
Java
Python
TypeScript