You are viewing documentation for version 2 of the AWS SDK for Ruby. Version 3 documentation can be found here.
Class: Aws::ECR::Types::BatchGetImageRequest
- Inherits:
-
Struct
- Object
- Struct
- Aws::ECR::Types::BatchGetImageRequest
- Defined in:
- (unknown)
Overview
When passing BatchGetImageRequest as input to an Aws::Client method, you can use a vanilla Hash:
{
registry_id: "RegistryId",
repository_name: "RepositoryName", # required
image_ids: [ # required
{
image_digest: "ImageDigest",
image_tag: "ImageTag",
},
],
accepted_media_types: ["MediaType"],
}
Instance Attribute Summary collapse
-
#accepted_media_types ⇒ Array<String>
The accepted media types for the request.
-
#image_ids ⇒ Array<Types::ImageIdentifier>
A list of image ID references that correspond to images to describe.
-
#registry_id ⇒ String
The AWS account ID associated with the registry that contains the images to describe.
-
#repository_name ⇒ String
The repository that contains the images to describe.
Instance Attribute Details
#accepted_media_types ⇒ Array<String>
The accepted media types for the request.
Valid values: application/vnd.docker.distribution.manifest.v1+json
|
application/vnd.docker.distribution.manifest.v2+json
|
application/vnd.oci.image.manifest.v1+json
#image_ids ⇒ Array<Types::ImageIdentifier>
A list of image ID references that correspond to images to describe. The
format of the imageIds
reference is imageTag=tag
or
imageDigest=digest
.
#registry_id ⇒ String
The AWS account ID associated with the registry that contains the images to describe. If you do not specify a registry, the default registry is assumed.
#repository_name ⇒ String
The repository that contains the images to describe.