Module Values.LayerSource

An object that represents an Amazon ECR image layer.

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

    The sha256 digest of the image layer.

    *)
  2. layerAvailability : LayerAvailability.t option;
    (*

    The availability status of the image layer.

    *)
  3. layerSize : LayerSizeInBytes.t option;
    (*

    The size, in bytes, of the image layer.

    *)
  4. mediaType : MediaType.t option;
    (*

    The media type of the layer, such as application/vnd.docker.image.rootfs.diff.tar.gzip or application/vnd.oci.image.layer.v1.tar+gzip.

    *)
}
Sourceval make : ?layerDigest:??? -> ?layerAvailability:??? -> ?layerSize:??? -> ?mediaType:??? -> unit -> t
Sourceval to_value : t -> [> `Structure of (string * [> `Enum of string | `Long of LayerSizeInBytes.t | `String of LayerDigest.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