Show / Hide Table of Contents

Class CfnImageVersionProps

Properties for defining a CfnImageVersion.

Inheritance
System.Object
CfnImageVersionProps
Implements
ICfnImageVersionProps
Namespace: Amazon.CDK.AWS.Sagemaker
Assembly: Amazon.CDK.AWS.Sagemaker.dll
Syntax (csharp)
public class CfnImageVersionProps : Object, ICfnImageVersionProps
Syntax (vb)
Public Class CfnImageVersionProps
    Inherits Object
    Implements ICfnImageVersionProps
Remarks

Link: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-sagemaker-imageversion.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 cfnImageVersionProps = new CfnImageVersionProps {
    BaseImage = "baseImage",
    ImageName = "imageName"
};

Synopsis

Constructors

CfnImageVersionProps()

Properties

BaseImage

The container image that the SageMaker image version is based on.

ImageName

The name of the parent image.

Constructors

CfnImageVersionProps()

public CfnImageVersionProps()

Properties

BaseImage

The container image that the SageMaker image version is based on.

public string BaseImage { get; set; }
Property Value

System.String

Remarks

Length Constraints : Minimum length of 1. Maximum length of 255.

Pattern : .*

Link: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-sagemaker-imageversion.html#cfn-sagemaker-imageversion-baseimage

ImageName

The name of the parent image.

public string ImageName { get; set; }
Property Value

System.String

Remarks

Length Constraints : Minimum length of 1. Maximum length of 63.

Pattern : ^a-zA-Z0-9{0,62}$

Link: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-sagemaker-imageversion.html#cfn-sagemaker-imageversion-imagename

Implements

ICfnImageVersionProps
Back to top Generated by DocFX