Module Values.ImageFailureSource

An object that represents an Amazon ECR image failure.

Sourcetype nonrec t = {
  1. imageId : ImageIdentifier.t option;
    (*

    The image ID that's associated with the failure.

    *)
  2. failureCode : ImageFailureCode.t option;
    (*

    The code that's associated with the failure.

    *)
  3. failureReason : ImageFailureReason.t option;
    (*

    The reason for the failure.

    *)
}
Sourceval make : ?imageId:??? -> ?failureCode:??? -> ?failureReason:??? -> unit -> t
Sourceval to_value : t -> [> `Structure of (string * [> `Enum of string | `String of ImageFailureReason.t | `Structure of (string * [> `String of ImageDigest.t ]) list ]) 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