Class CfnImageVersionMixinProps
Properties for CfnImageVersionPropsMixin.
Implements
Inherited Members
Namespace: Amazon.CDK.Mixins.Preview.AWS.SageMaker.Mixins
Assembly: Amazon.CDK.Mixins.Preview.dll
Syntax (csharp)
public class CfnImageVersionMixinProps : ICfnImageVersionMixinProps
Syntax (vb)
Public Class CfnImageVersionMixinProps Implements ICfnImageVersionMixinProps
Remarks
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.Mixins.Preview.AWS.SageMaker.Mixins;
var cfnImageVersionMixinProps = new CfnImageVersionMixinProps {
Alias = "alias",
Aliases = new [] { "aliases" },
BaseImage = "baseImage",
Horovod = false,
ImageName = "imageName",
JobType = "jobType",
MlFramework = "mlFramework",
Processor = "processor",
ProgrammingLang = "programmingLang",
ReleaseNotes = "releaseNotes",
VendorGuidance = "vendorGuidance"
};
Synopsis
Constructors
| CfnImageVersionMixinProps() | Properties for CfnImageVersionPropsMixin. |
Properties
| Alias | The alias of the image version. |
| Aliases | List of aliases for the image version. |
| BaseImage | The container image that the SageMaker image version is based on. |
| Horovod | Indicates Horovod compatibility. |
| ImageName | The name of the parent image. |
| JobType | Indicates SageMaker job type compatibility. |
| MlFramework | The machine learning framework vended in the image version. |
| Processor | Indicates CPU or GPU compatibility. |
| ProgrammingLang | The supported programming language and its version. |
| ReleaseNotes | The maintainer description of the image version. |
| VendorGuidance | The availability of the image version specified by the maintainer. |
Constructors
CfnImageVersionMixinProps()
Properties for CfnImageVersionPropsMixin.
public CfnImageVersionMixinProps()
Remarks
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.Mixins.Preview.AWS.SageMaker.Mixins;
var cfnImageVersionMixinProps = new CfnImageVersionMixinProps {
Alias = "alias",
Aliases = new [] { "aliases" },
BaseImage = "baseImage",
Horovod = false,
ImageName = "imageName",
JobType = "jobType",
MlFramework = "mlFramework",
Processor = "processor",
ProgrammingLang = "programmingLang",
ReleaseNotes = "releaseNotes",
VendorGuidance = "vendorGuidance"
};
Properties
Alias
The alias of the image version.
public string? Alias { get; set; }
Property Value
Remarks
Aliases
List of aliases for the image version.
public string[]? Aliases { get; set; }
Property Value
string[]
Remarks
BaseImage
The container image that the SageMaker image version is based on.
public string? BaseImage { get; set; }
Property Value
Remarks
Horovod
Indicates Horovod compatibility.
public object? Horovod { get; set; }
Property Value
Remarks
ImageName
The name of the parent image.
public string? ImageName { get; set; }
Property Value
Remarks
Length Constraints : Minimum length of 1. Maximum length of 63.
Pattern : ^a-zA-Z0-9{0,62}$
JobType
Indicates SageMaker job type compatibility.
public string? JobType { get; set; }
Property Value
Remarks
MlFramework
The machine learning framework vended in the image version.
public string? MlFramework { get; set; }
Property Value
Remarks
Processor
Indicates CPU or GPU compatibility.
public string? Processor { get; set; }
Property Value
Remarks
ProgrammingLang
The supported programming language and its version.
public string? ProgrammingLang { get; set; }
Property Value
Remarks
ReleaseNotes
The maintainer description of the image version.
public string? ReleaseNotes { get; set; }
Property Value
Remarks
VendorGuidance
The availability of the image version specified by the maintainer.
public string? VendorGuidance { get; set; }