interface CustomImageProperty
| Language | Type name |
|---|---|
.NET | Amazon.CDK.Mixins.Preview.AWS.SageMaker.Mixins.CfnSpacePropsMixin.CustomImageProperty |
Go | github.com/aws/aws-cdk-go/awscdkmixinspreview/v2/awssagemaker/mixins#CfnSpacePropsMixin_CustomImageProperty |
Java | software.amazon.awscdk.mixins.preview.services.sagemaker.mixins.CfnSpacePropsMixin.CustomImageProperty |
Python | aws_cdk.mixins_preview.aws_sagemaker.mixins.CfnSpacePropsMixin.CustomImageProperty |
TypeScript | @aws-cdk/mixins-preview » aws_sagemaker » mixins » CfnSpacePropsMixin » CustomImageProperty |
A custom SageMaker AI image.
For more information, see Bring your own SageMaker AI image .
Example
// The code below shows an example of how to instantiate this type.
// The values are placeholders you should change.
import { mixins as sagemaker_mixins } from '@aws-cdk/mixins-preview/aws-sagemaker';
const customImageProperty: sagemaker_mixins.CfnSpacePropsMixin.CustomImageProperty = {
appImageConfigName: 'appImageConfigName',
imageName: 'imageName',
imageVersionNumber: 123,
};
Properties
| Name | Type | Description |
|---|---|---|
| app | string | The name of the AppImageConfig. |
| image | string | The name of the CustomImage. |
| image | number | The version number of the CustomImage. |
appImageConfigName?
Type:
string
(optional)
The name of the AppImageConfig.
imageName?
Type:
string
(optional)
The name of the CustomImage.
Must be unique to your account.
imageVersionNumber?
Type:
number
(optional)
The version number of the CustomImage.

.NET
Go
Java
Python
TypeScript