Module Values_1.CreateImageVersionRequestSource

Creates a version of the SageMaker AI image specified by ImageName. The version represents the Amazon ECR container image specified by BaseImage.

Sourcetype nonrec t = {
  1. baseImage : ImageBaseImage.t;
    (*

    The registry path of the container image to use as the starting point for this version. The path is an Amazon ECR URI in the following format: <acct-id>.dkr.ecr.<region>.amazonaws.com/<repo-name[:tag] or [@digest]>

    *)
  2. clientToken : Values_0.ClientToken.t;
    (*

    A unique ID. If not specified, the Amazon Web Services CLI and Amazon Web Services SDKs, such as the SDK for Python (Boto3), add a unique value to the call.

    *)
  3. imageName : Values_0.ImageName.t;
    (*

    The ImageName of the Image to create a version of.

    *)
  4. aliases : SageMakerImageVersionAliases.t option;
    (*

    A list of aliases created with the image version.

    *)
  5. vendorGuidance : VendorGuidance.t option;
    (*

    The stability of the image version, specified by the maintainer. NOT_PROVIDED: The maintainers did not provide a status for image version stability. STABLE: The image version is stable. TO_BE_ARCHIVED: The image version is set to be archived. Custom image versions that are set to be archived are automatically archived after three months. ARCHIVED: The image version is archived. Archived image versions are not searchable and are no longer actively supported.

    *)
  6. jobType : JobType.t option;
    (*

    Indicates SageMaker AI job type compatibility. TRAINING: The image version is compatible with SageMaker AI training jobs. INFERENCE: The image version is compatible with SageMaker AI inference jobs. NOTEBOOK_KERNEL: The image version is compatible with SageMaker AI notebook kernels.

    *)
  7. mLFramework : MLFramework.t option;
    (*

    The machine learning framework vended in the image version.

    *)
  8. programmingLang : ProgrammingLang.t option;
    (*

    The supported programming language and its version.

    *)
  9. processor : Processor.t option;
    (*

    Indicates CPU or GPU compatibility. CPU: The image version is compatible with CPU. GPU: The image version is compatible with GPU.

    *)
  10. horovod : Horovod.t option;
    (*

    Indicates Horovod compatibility.

    *)
  11. releaseNotes : ReleaseNotes.t option;
    (*

    The maintainer description of the image version.

    *)
}
Sourceval context_ : string
Sourceval make : ?aliases:??? -> ?vendorGuidance:??? -> ?jobType:??? -> ?mLFramework:??? -> ?programmingLang:??? -> ?processor:??? -> ?horovod:??? -> ?releaseNotes:??? -> baseImage:ImageBaseImage.t -> clientToken:Values_0.ClientToken.t -> imageName:Values_0.ImageName.t -> unit -> t
Sourceval to_value : t -> [> `Structure of (string * [> `Boolean of Horovod.t | `Enum of string | `List of [> `String of SageMakerImageVersionAlias.t ] list | `String of ImageBaseImage.t ]) list ]
Sourceval to_query : t -> Awso.Client.Query.t
Sourceval of_xml : Awso.Xml.t -> t
Sourceval of_string : string -> t
Sourceval of_json : Yojson.Safe.t -> t
Sourceval to_json : t -> Yojson.Safe.t