Module Values.CompleteLayerUploadRequestSource

Informs Amazon ECR that the image layer upload has completed for a specified registry, repository name, and upload ID. You can optionally provide a sha256 digest of the image layer for data validation purposes. When an image is pushed, the CompleteLayerUpload API is called once per each new image layer to verify that the upload has completed. This operation is used by the Amazon ECR proxy and is not generally used by customers for pulling and pushing images. In most cases, you should use the docker CLI to pull, tag, and push images.

Sourcetype nonrec t = {
  1. registryId : RegistryId.t option;
    (*

    The Amazon Web Services account ID associated with the registry to which to upload layers. If you do not specify a registry, the default registry is assumed.

    *)
  2. repositoryName : RepositoryName.t;
    (*

    The name of the repository to associate with the image layer.

    *)
  3. uploadId : UploadId.t;
    (*

    The upload ID from a previous InitiateLayerUpload operation to associate with the image layer.

    *)
  4. layerDigests : LayerDigestList.t;
    (*

    The sha256 digest of the image layer.

    *)
}
Sourceval context_ : string
Sourceval make : ?registryId:??? -> repositoryName:RepositoryName.t -> uploadId:UploadId.t -> layerDigests:LayerDigestList.t -> unit -> t
Sourceval to_value : t -> [> `Structure of (string * [> `List of [> `String of LayerDigest.t ] list | `String of RegistryId.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