Module Values.CompleteLayerUploadRequestSource

Informs Amazon ECR that the image layer upload is complete for a specified public 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 for each new image layer to verify that the upload is complete. 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 : RegistryIdOrAlias.t option;
    (*

    The Amazon Web Services account ID, or registry alias, associated with the registry where layers are uploaded. If you do not specify a registry, the default public registry is assumed.

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

    The name of the repository in a public registry 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 RegistryIdOrAlias.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