interface CfnImageVersionProps
| Language | Type name | 
|---|---|
|  .NET | Amazon.CDK.AWS.Sagemaker.CfnImageVersionProps | 
|  Java | software.amazon.awscdk.services.sagemaker.CfnImageVersionProps | 
|  Python | aws_cdk.aws_sagemaker.CfnImageVersionProps | 
|  TypeScript | @aws-cdk/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 * as sagemaker from '@aws-cdk/aws-sagemaker';
const cfnImageVersionProps: sagemaker.CfnImageVersionProps = {
  baseImage: 'baseImage',
  imageName: 'imageName',
};
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. | 
baseImage
Type:
string
The container image that the SageMaker image version is based on.
Length Constraints : Minimum length of 1. Maximum length of 255.
Pattern : .*
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}$
