You are viewing documentation for version 2 of the AWS SDK for Ruby. Version 3 documentation can be found here.

Class: Aws::ECR::Types::CompleteLayerUploadRequest

Inherits:
Struct
  • Object
show all
Defined in:
(unknown)

Overview

Note:

When passing CompleteLayerUploadRequest as input to an Aws::Client method, you can use a vanilla Hash:

{
  registry_id: "RegistryId",
  repository_name: "RepositoryName", # required
  upload_id: "UploadId", # required
  layer_digests: ["LayerDigest"], # required
}

Instance Attribute Summary collapse

Instance Attribute Details

#layer_digestsArray<String>

The sha256 digest of the image layer.

Returns:

  • (Array<String>)

    The sha256 digest of the image layer.

#registry_idString

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.

Returns:

  • (String)

    The AWS account ID associated with the registry to which to upload layers.

#repository_nameString

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

Returns:

  • (String)

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

#upload_idString

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

Returns:

  • (String)

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