Module Values_2.ImageVersionSource

A version of a SageMaker AI Image. A version represents an existing container image.

Sourcetype nonrec t = {
  1. creationTime : Values_0.Timestamp.t option;
    (*

    When the version was created.

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

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

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

    The ARN of the image the version is based on.

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

    The ARN of the version.

    *)
  5. imageVersionStatus : Values_1.ImageVersionStatus.t option;
    (*

    The status of the version.

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

    When the version was last modified.

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

    The version number.

    *)
}
Sourceval make : ?creationTime:??? -> ?failureReason:??? -> ?imageArn:??? -> ?imageVersionArn:??? -> ?imageVersionStatus:??? -> ?lastModifiedTime:??? -> ?version:??? -> unit -> t
Sourceval to_value : t -> [> `Structure of (string * [> `Enum of string | `Integer of Values_0.ImageVersionNumber.t | `String of Values_0.FailureReason.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