interface CfnImageVersionProps
Language | Type name |
---|---|
![]() | Amazon.CDK.AWS.Sagemaker.CfnImageVersionProps |
![]() | github.com/aws/aws-cdk-go/awscdk/v2/awssagemaker#CfnImageVersionProps |
![]() | software.amazon.awscdk.services.sagemaker.CfnImageVersionProps |
![]() | aws_cdk.aws_sagemaker.CfnImageVersionProps |
![]() | aws-cdk-lib » aws_sagemaker » CfnImageVersionProps |
Properties for defining a CfnImageVersion
.
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 cfnImageVersionProps: sagemaker.CfnImageVersionProps = {
baseImage: 'baseImage',
imageName: 'imageName',
// the properties below are optional
alias: 'alias',
aliases: ['aliases'],
horovod: false,
jobType: 'jobType',
mlFramework: 'mlFramework',
processor: 'processor',
programmingLang: 'programmingLang',
releaseNotes: 'releaseNotes',
vendorGuidance: 'vendorGuidance',
};
Properties
Name | Type | Description |
---|---|---|
base | string | The container image that the SageMaker image version is based on. |
image | string | The name of the parent image. |
alias? | string | The alias of the image version. |
aliases? | string[] | List of aliases for the image version. |
horovod? | boolean | IResolvable | Indicates Horovod compatibility. |
job | string | Indicates SageMaker job type compatibility. |
ml | string | The machine learning framework vended in the image version. |
processor? | string | Indicates CPU or GPU compatibility. |
programming | string | The supported programming language and its version. |
release | string | The maintainer description of the image version. |
vendor | string | The availability of the image version specified by the maintainer. |
baseImage
Type:
string
The container image that the SageMaker image version is based on.
imageName
Type:
string
The name of the parent image.
Length Constraints : Minimum length of 1. Maximum length of 63.
Pattern : ^[a-zA-Z0-9]([-.]?[a-zA-Z0-9]){0,62}$
alias?
Type:
string
(optional)
The alias of the image version.
aliases?
Type:
string[]
(optional)
List of aliases for the image version.
horovod?
Type:
boolean |
IResolvable
(optional)
Indicates Horovod compatibility.
jobType?
Type:
string
(optional)
Indicates SageMaker job type compatibility.
mlFramework?
Type:
string
(optional)
The machine learning framework vended in the image version.
processor?
Type:
string
(optional)
Indicates CPU or GPU compatibility.
programmingLang?
Type:
string
(optional)
The supported programming language and its version.
releaseNotes?
Type:
string
(optional)
The maintainer description of the image version.
vendorGuidance?
Type:
string
(optional)
The availability of the image version specified by the maintainer.