Module Values.LayerFailureSource

An object that represents an Amazon ECR image layer failure.

Sourcetype nonrec t = {
  1. layerDigest : BatchedOperationLayerDigest.t option;
    (*

    The layer digest that's associated with the failure.

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

    The failure code that's associated with the failure.

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

    The reason for the failure.

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