Skip to content

Initiate Layer Upload

ecrpublic_initiate_layer_upload R Documentation

Notifies Amazon ECR that you intend to upload an image layer

Description

Notifies Amazon ECR that you intend to upload an image layer.

When an image is pushed, the InitiateLayerUpload API is called once for each image layer that hasn't already been uploaded. Whether an image layer uploads is determined by the BatchCheckLayerAvailability API action.

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.

Usage

ecrpublic_initiate_layer_upload(registryId, repositoryName)

Arguments

registryId

The Amazon Web Services account ID, or registry alias, that's associated with the registry to which you intend to upload layers. If you do not specify a registry, the default public registry is assumed.

repositoryName

[required] The name of the repository that you want to upload layers to.

Value

A list with the following syntax:

list(
  uploadId = "string",
  partSize = 123
)

Request syntax

svc$initiate_layer_upload(
  registryId = "string",
  repositoryName = "string"
)