Class: Aws::ECR::Types::InitiateLayerUploadRequest
- Inherits:
-
Struct
- Object
- Struct
- Aws::ECR::Types::InitiateLayerUploadRequest
- Defined in:
- gems/aws-sdk-ecr/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
}
Constant Summary collapse
- SENSITIVE =
[]
Instance Attribute Summary collapse
-
#registry_id ⇒ String
The Amazon Web Services account ID associated with the registry to which you intend to upload layers.
-
#repository_name ⇒ String
The name of the repository to which you intend to upload layers.
Instance Attribute Details
#registry_id ⇒ String
The Amazon Web Services account ID associated with the registry to which you intend to upload layers. If you do not specify a registry, the default registry is assumed.
2275 2276 2277 2278 2279 2280 |
# File 'gems/aws-sdk-ecr/lib/aws-sdk-ecr/types.rb', line 2275 class InitiateLayerUploadRequest < Struct.new( :registry_id, :repository_name) SENSITIVE = [] include Aws::Structure end |
#repository_name ⇒ String
The name of the repository to which you intend to upload layers.
2275 2276 2277 2278 2279 2280 |
# File 'gems/aws-sdk-ecr/lib/aws-sdk-ecr/types.rb', line 2275 class InitiateLayerUploadRequest < Struct.new( :registry_id, :repository_name) SENSITIVE = [] include Aws::Structure end |