Show / Hide Table of Contents

Class CfnDomain.CustomImageProperty

A custom SageMaker AI image.

Inheritance
object
CfnDomain.CustomImageProperty
Implements
CfnDomain.ICustomImageProperty
Inherited Members
object.GetType()
object.MemberwiseClone()
object.ToString()
object.Equals(object)
object.Equals(object, object)
object.ReferenceEquals(object, object)
object.GetHashCode()
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 .

See: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-sagemaker-domain-customimage.html

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 .

See: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-sagemaker-domain-customimage.html

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

string

Remarks

See: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-sagemaker-domain-customimage.html#cfn-sagemaker-domain-customimage-appimageconfigname

ImageName

The name of the CustomImage.

public string ImageName { get; set; }
Property Value

string

Remarks

Must be unique to your account.

See: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-sagemaker-domain-customimage.html#cfn-sagemaker-domain-customimage-imagename

ImageVersionNumber

The version number of the CustomImage.

public double? ImageVersionNumber { get; set; }
Property Value

double?

Remarks

See: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-sagemaker-domain-customimage.html#cfn-sagemaker-domain-customimage-imageversionnumber

Implements

CfnDomain.ICustomImageProperty
Back to top Generated by DocFX