interface ArtifactSourceProperty
| Language | Type name |
|---|---|
.NET | Amazon.CDK.CfnPropertyMixins.AWS.SageMaker.CfnArtifactPropsMixin.ArtifactSourceProperty |
Go | github.com/aws/aws-cdk-go/awscdkcfnpropertymixins/v2/awssagemaker#CfnArtifactPropsMixin_ArtifactSourceProperty |
Java | software.amazon.awscdk.cfnpropertymixins.services.sagemaker.CfnArtifactPropsMixin.ArtifactSourceProperty |
Python | aws_cdk.cfn_property_mixins.aws_sagemaker.CfnArtifactPropsMixin.ArtifactSourceProperty |
TypeScript | @aws-cdk/cfn-property-mixins » aws_sagemaker » CfnArtifactPropsMixin » ArtifactSourceProperty |
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 artifactSourceProperty: sagemaker.CfnArtifactPropsMixin.ArtifactSourceProperty = {
sourceTypes: [{
sourceIdType: 'sourceIdType',
value: 'value',
}],
sourceUri: 'sourceUri',
};
Properties
| Name | Type | Description |
|---|---|---|
| source | IResolvable | (IResolvable | Artifact)[] | A list of source types. |
| source | string | The URI of the source. |
sourceTypes?
Type:
IResolvable | (IResolvable | Artifact)[]
(optional)
A list of source types.
sourceUri?
Type:
string
(optional)
The URI of the source.

.NET
Go
Java
Python
TypeScript