Class: Aws::ECR::Types::InitiateLayerUploadRequest

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 InitiateLayerUploadRequest data as a hash:

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

Instance Attribute Summary collapse

Instance Attribute Details

#registry_idString

The AWS account ID associated with the registry that you intend to upload layers to. If you do not specify a registry, the default registry is assumed.

Returns:

  • (String)


869
870
871
872
873
# File 'lib/aws-sdk-ecr/types.rb', line 869

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

#repository_nameString

The name of the repository that you intend to upload layers to.

Returns:

  • (String)


869
870
871
872
873
# File 'lib/aws-sdk-ecr/types.rb', line 869

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