CfnImageVersionMixinProps
- class aws_cdk.mixins_preview.aws_sagemaker.mixins.CfnImageVersionMixinProps(*, alias=None, aliases=None, base_image=None, horovod=None, image_name=None, job_type=None, ml_framework=None, processor=None, programming_lang=None, release_notes=None, vendor_guidance=None)
Bases:
objectProperties for CfnImageVersionPropsMixin.
- Parameters:
alias (
Optional[str]) – The alias of the image version.aliases (
Optional[Sequence[str]]) – List of aliases for the image version.base_image (
Optional[str]) – The container image that the SageMaker image version is based on.horovod (
Union[bool,IResolvable,None]) – Indicates Horovod compatibility.image_name (
Optional[str]) – 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}$job_type (
Optional[str]) – Indicates SageMaker job type compatibility.ml_framework (
Optional[str]) – The machine learning framework vended in the image version.processor (
Optional[str]) – Indicates CPU or GPU compatibility.programming_lang (
Optional[str]) – The supported programming language and its version.release_notes (
Optional[str]) – The maintainer description of the image version.vendor_guidance (
Optional[str]) – The availability of the image version specified by the maintainer.
- See:
- ExampleMetadata:
fixture=_generated
Example:
# The code below shows an example of how to instantiate this type. # The values are placeholders you should change. from aws_cdk.mixins_preview.aws_sagemaker import mixins as sagemaker_mixins cfn_image_version_mixin_props = sagemaker_mixins.CfnImageVersionMixinProps( alias="alias", aliases=["aliases"], base_image="baseImage", horovod=False, image_name="imageName", job_type="jobType", ml_framework="mlFramework", processor="processor", programming_lang="programmingLang", release_notes="releaseNotes", vendor_guidance="vendorGuidance" )
Attributes
- alias
The alias of the image version.
- aliases
List of aliases for the image version.
- base_image
The container image that the SageMaker image version is based on.
- horovod
Indicates Horovod compatibility.
- image_name
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}$
- job_type
Indicates SageMaker job type compatibility.
- ml_framework
The machine learning framework vended in the image version.
- processor
Indicates CPU or GPU compatibility.
- programming_lang
The supported programming language and its version.
- release_notes
The maintainer description of the image version.
- vendor_guidance
The availability of the image version specified by the maintainer.