interface ArtifactSourceProperty
| Language | Type name |
|---|---|
.NET | Amazon.CDK.AWS.Sagemaker.CfnArtifact.ArtifactSourceProperty |
Go | github.com/aws/aws-cdk-go/awscdk/v2/awssagemaker#CfnArtifact_ArtifactSourceProperty |
Java | software.amazon.awscdk.services.sagemaker.CfnArtifact.ArtifactSourceProperty |
Python | aws_cdk.aws_sagemaker.CfnArtifact.ArtifactSourceProperty |
TypeScript | aws-cdk-lib » aws_sagemaker » CfnArtifact » 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-lib';
const artifactSourceProperty: sagemaker.CfnArtifact.ArtifactSourceProperty = {
sourceUri: 'sourceUri',
// the properties below are optional
sourceTypes: [{
sourceIdType: 'sourceIdType',
value: 'value',
}],
};
Properties
| Name | Type | Description |
|---|---|---|
| source | string | The URI of the source. |
| source | IResolvable | (IResolvable | Artifact)[] | A list of source types. |
sourceUri
Type:
string
The URI of the source.
sourceTypes?
Type:
IResolvable | (IResolvable | Artifact)[]
(optional)
A list of source types.

.NET
Go
Java
Python
TypeScript