interface ImageReference
| Language | Type name |
|---|---|
.NET | Amazon.CDK.Interfaces.Sagemaker.ImageReference |
Go | github.com/aws/aws-cdk-go/awscdk/v2/interfaces/awssagemaker#ImageReference |
Java | software.amazon.awscdk.interfaces.sagemaker.ImageReference |
Python | aws_cdk.interfaces.aws_sagemaker.ImageReference |
TypeScript | aws-cdk-lib » interfaces » aws_sagemaker » ImageReference |
A reference to a Image 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_aws_sagemaker } from 'aws-cdk-lib/interfaces';
const imageReference: interfaces_aws_sagemaker.ImageReference = {
imageArn: 'imageArn',
};
Properties
| Name | Type | Description |
|---|---|---|
| image | string | The ImageArn of the Image resource. |
imageArn
Type:
string
The ImageArn of the Image resource.

.NET
Go
Java
Python
TypeScript