Class: Aws::ECR::Types::GetDownloadUrlForLayerRequest

Inherits:
Struct
  • Object
show all
Includes:
Structure
Defined in:
lib/aws-sdk-ecr/types.rb

Overview

Note:

When making an API call, you may pass GetDownloadUrlForLayerRequest data as a hash:

{
  registry_id: "RegistryId",
  repository_name: "RepositoryName", # required
  layer_digest: "LayerDigest", # required
}

Instance Attribute Summary collapse

Instance Attribute Details

#layer_digestString

The digest of the image layer to download.

Returns:

  • (String)


651
652
653
654
655
656
# File 'lib/aws-sdk-ecr/types.rb', line 651

class GetDownloadUrlForLayerRequest < Struct.new(
  :registry_id,
  :repository_name,
  :layer_digest)
  include Aws::Structure
end

#registry_idString

The AWS account ID associated with the registry that contains the image layer to download. If you do not specify a registry, the default registry is assumed.

Returns:

  • (String)


651
652
653
654
655
656
# File 'lib/aws-sdk-ecr/types.rb', line 651

class GetDownloadUrlForLayerRequest < Struct.new(
  :registry_id,
  :repository_name,
  :layer_digest)
  include Aws::Structure
end

#repository_nameString

The name of the repository that is associated with the image layer to download.

Returns:

  • (String)


651
652
653
654
655
656
# File 'lib/aws-sdk-ecr/types.rb', line 651

class GetDownloadUrlForLayerRequest < Struct.new(
  :registry_id,
  :repository_name,
  :layer_digest)
  include Aws::Structure
end