Class CfnDomain.CustomImageProperty
A custom SageMaker AI image.
Implements
Inherited Members
Namespace: Amazon.CDK.AWS.Sagemaker
Assembly: Amazon.CDK.Lib.dll
Syntax (csharp)
public class CfnDomain.CustomImageProperty : CfnDomain.ICustomImageProperty
Syntax (vb)
Public Class CfnDomain.CustomImageProperty Implements CfnDomain.ICustomImageProperty
Remarks
For more information, see Bring your own SageMaker AI image .
ExampleMetadata: fixture=_generated
Examples
// The code below shows an example of how to instantiate this type.
// The values are placeholders you should change.
using Amazon.CDK.AWS.Sagemaker;
var customImageProperty = new CustomImageProperty {
AppImageConfigName = "appImageConfigName",
ImageName = "imageName",
// the properties below are optional
ImageVersionNumber = 123
};
Synopsis
Constructors
CustomImageProperty() | A custom SageMaker AI image. |
Properties
AppImageConfigName | The name of the AppImageConfig. |
ImageName | The name of the CustomImage. |
ImageVersionNumber | The version number of the CustomImage. |
Constructors
CustomImageProperty()
A custom SageMaker AI image.
public CustomImageProperty()
Remarks
For more information, see Bring your own SageMaker AI image .
ExampleMetadata: fixture=_generated
Examples
// The code below shows an example of how to instantiate this type.
// The values are placeholders you should change.
using Amazon.CDK.AWS.Sagemaker;
var customImageProperty = new CustomImageProperty {
AppImageConfigName = "appImageConfigName",
ImageName = "imageName",
// the properties below are optional
ImageVersionNumber = 123
};
Properties
AppImageConfigName
The name of the AppImageConfig.
public string AppImageConfigName { get; set; }
Property Value
Remarks
ImageName
The name of the CustomImage.
public string ImageName { get; set; }
Property Value
Remarks
ImageVersionNumber
The version number of the CustomImage.
public double? ImageVersionNumber { get; set; }