interface TrialComponentArtifactProperty
| Language | Type name |
|---|---|
.NET | Amazon.CDK.CfnPropertyMixins.AWS.SageMaker.CfnTrialComponentPropsMixin.TrialComponentArtifactProperty |
Go | github.com/aws/aws-cdk-go/awscdkcfnpropertymixins/v2/awssagemaker#CfnTrialComponentPropsMixin_TrialComponentArtifactProperty |
Java | software.amazon.awscdk.cfnpropertymixins.services.sagemaker.CfnTrialComponentPropsMixin.TrialComponentArtifactProperty |
Python | aws_cdk.cfn_property_mixins.aws_sagemaker.CfnTrialComponentPropsMixin.TrialComponentArtifactProperty |
TypeScript | @aws-cdk/cfn-property-mixins » aws_sagemaker » CfnTrialComponentPropsMixin » 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/cfn-property-mixins';
const trialComponentArtifactProperty: sagemaker.CfnTrialComponentPropsMixin.TrialComponentArtifactProperty = {
mediaType: 'mediaType',
value: 'value',
};
Properties
| Name | Type | Description |
|---|---|---|
| media | string | The media type of the artifact. |
| value? | string | The location of the artifact. |
mediaType?
Type:
string
(optional)
The media type of the artifact.
value?
Type:
string
(optional)
The location of the artifact.

.NET
Go
Java
Python
TypeScript