interface ArtifactReference
| Language | Type name |
|---|---|
.NET | Amazon.CDK.Interfaces.Sagemaker.ArtifactReference |
Go | github.com/aws/aws-cdk-go/awscdk/v2/interfaces/awssagemaker#ArtifactReference |
Java | software.amazon.awscdk.interfaces.sagemaker.ArtifactReference |
Python | aws_cdk.interfaces.aws_sagemaker.ArtifactReference |
TypeScript | aws-cdk-lib » interfaces » aws_sagemaker » ArtifactReference |
A reference to a Artifact resource.
Example
// The code below shows an example of how to instantiate this type.
// The values are placeholders you should change.
import { aws_sagemaker as interfaces_sagemaker } from 'aws-cdk-lib/interfaces';
const artifactReference: interfaces_sagemaker.ArtifactReference = {
artifactArn: 'artifactArn',
};
Properties
| Name | Type | Description |
|---|---|---|
| artifact | string | The Arn of the Artifact resource. |
artifactArn
Type:
string
The Arn of the Artifact resource.

.NET
Go
Java
Python
TypeScript