Interface CfnImageVersionMixinProps
- All Superinterfaces:
software.amazon.jsii.JsiiSerializable
- All Known Implementing Classes:
CfnImageVersionMixinProps.Jsii$Proxy
@Generated(value="jsii-pacmak/1.127.0 (build 2117ad5)",
date="2026-03-11T13:20:04.977Z")
@Stability(Stable)
public interface CfnImageVersionMixinProps
extends software.amazon.jsii.JsiiSerializable
Properties for CfnImageVersionPropsMixin.
Example:
// The code below shows an example of how to instantiate this type.
// The values are placeholders you should change.
import software.amazon.awscdk.cfnpropertymixins.services.sagemaker.*;
CfnImageVersionMixinProps cfnImageVersionMixinProps = CfnImageVersionMixinProps.builder()
.alias("alias")
.aliases(List.of("aliases"))
.baseImage("baseImage")
.horovod(false)
.imageName("imageName")
.jobType("jobType")
.mlFramework("mlFramework")
.processor("processor")
.programmingLang("programmingLang")
.releaseNotes("releaseNotes")
.vendorGuidance("vendorGuidance")
.build();
- See Also:
-
Nested Class Summary
Nested ClassesModifier and TypeInterfaceDescriptionstatic final classA builder forCfnImageVersionMixinPropsstatic final classAn implementation forCfnImageVersionMixinProps -
Method Summary
Modifier and TypeMethodDescriptionbuilder()default StringgetAlias()The alias of the image version.List of aliases for the image version.default StringThe container image that the SageMaker image version is based on.default ObjectIndicates Horovod compatibility.default StringThe name of the parent image.default StringIndicates SageMaker job type compatibility.default StringThe machine learning framework vended in the image version.default StringIndicates CPU or GPU compatibility.default StringThe supported programming language and its version.default StringThe maintainer description of the image version.default StringThe availability of the image version specified by the maintainer.Methods inherited from interface software.amazon.jsii.JsiiSerializable
$jsii$toJson
-
Method Details
-
getAlias
The alias of the image version.- See Also:
-
getAliases
List of aliases for the image version.- See Also:
-
getBaseImage
The container image that the SageMaker image version is based on.- See Also:
-
getHorovod
Indicates Horovod compatibility.Returns union: either
BooleanorIResolvable- See Also:
-
getImageName
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}$- See Also:
-
getJobType
Indicates SageMaker job type compatibility.- See Also:
-
getMlFramework
The machine learning framework vended in the image version.- See Also:
-
getProcessor
Indicates CPU or GPU compatibility.- See Also:
-
getProgrammingLang
The supported programming language and its version.- See Also:
-
getReleaseNotes
The maintainer description of the image version.- See Also:
-
getVendorGuidance
The availability of the image version specified by the maintainer.- See Also:
-
builder
- Returns:
- a
CfnImageVersionMixinProps.BuilderofCfnImageVersionMixinProps
-