Module Values_1.DescribeImageVersionResponseSource

Describes a version of a SageMaker AI image.

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

    The registry path of the container image on which this image version is based.

    *)
  2. containerImage : ImageContainerImage.t option;
    (*

    The registry path of the container image that contains this image version.

    *)
  3. creationTime : Values_0.Timestamp.t option;
    (*

    When the version was created.

    *)
  4. failureReason : Values_0.FailureReason.t option;
    (*

    When a create or delete operation fails, the reason for the failure.

    *)
  5. imageArn : Values_0.ImageArn.t option;
    (*

    The ARN of the image the version is based on.

    *)
  6. imageVersionArn : Values_0.ImageVersionArn.t option;
    (*

    The ARN of the version.

    *)
  7. imageVersionStatus : ImageVersionStatus.t option;
    (*

    The status of the version.

    *)
  8. lastModifiedTime : Values_0.Timestamp.t option;
    (*

    When the version was last modified.

    *)
  9. version : Values_0.ImageVersionNumber.t option;
    (*

    The version number.

    *)
  10. 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.

    *)
  11. 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.

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

    The machine learning framework vended in the image version.

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

    The supported programming language and its version.

    *)
  14. 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.

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

    Indicates Horovod compatibility.

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

    The maintainer description of the image version.

    *)
}
Sourcetype nonrec error = [
  1. | `ResourceNotFound of Values_0.ResourceNotFound.t
  2. | `Unknown_operation_error of string * string option
]
Sourceval make : ?baseImage:??? -> ?containerImage:??? -> ?creationTime:??? -> ?failureReason:??? -> ?imageArn:??? -> ?imageVersionArn:??? -> ?imageVersionStatus:??? -> ?lastModifiedTime:??? -> ?version:??? -> ?vendorGuidance:??? -> ?jobType:??? -> ?mLFramework:??? -> ?programmingLang:??? -> ?processor:??? -> ?horovod:??? -> ?releaseNotes:??? -> unit -> t
Sourceval error_of_json : string -> Yojson.Safe.t -> [> `ResourceNotFound of Values_0.ResourceNotFound.t | `Unknown_operation_error of string * string option ]
Sourceval error_of_xml : string -> Awso.Xml.t -> [> `ResourceNotFound of Values_0.ResourceNotFound.t | `Unknown_operation_error of string * string option ]
Sourceval error_to_json : error -> Yojson.Safe.t
Sourceval to_value : t -> [> `Structure of (string * [> `Boolean of Horovod.t | `Enum of string | `Integer of Values_0.ImageVersionNumber.t | `String of ImageBaseImage.t | `Timestamp of Values_0.Timestamp.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