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.
ecr_complete_layer_upload(registryId, repositoryName, uploadId,
layerDigests)
A list with the following syntax:
list(
registryId = "string",
repositoryName = "string",
uploadId = "string",
layerDigest = "string"
)
The AWS account ID associated with the registry to which to upload layers. If you do not specify a registry, the default registry is assumed.
[required] The name of the repository to associate with the image layer.
[required] The upload ID from a previous
initiate_layer_upload
operation to
associate with the image layer.
[required] The sha256
digest of the image layer.
svc$complete_layer_upload(
registryId = "string",
repositoryName = "string",
uploadId = "string",
layerDigests = list(
"string"
)
)