Copyright | (c) 2013-2016 Brendan Hay |
---|---|
License | Mozilla Public License, v. 2.0. |
Maintainer | Brendan Hay <brendan.g.hay@gmail.com> |
Stability | auto-generated |
Portability | non-portable (GHC extensions) |
Safe Haskell | None |
Language | Haskell2010 |
Gets detailed information for specified images within a specified repository. Images are specified with either imageTag
or imageDigest
.
- batchGetImage :: Text -> BatchGetImage
- data BatchGetImage
- bgiRegistryId :: Lens' BatchGetImage (Maybe Text)
- bgiRepositoryName :: Lens' BatchGetImage Text
- bgiImageIds :: Lens' BatchGetImage [ImageIdentifier]
- batchGetImageResponse :: Int -> BatchGetImageResponse
- data BatchGetImageResponse
- bgirsImages :: Lens' BatchGetImageResponse [Image]
- bgirsFailures :: Lens' BatchGetImageResponse [ImageFailure]
- bgirsResponseStatus :: Lens' BatchGetImageResponse Int
Creating a Request
Creates a value of BatchGetImage
with the minimum fields required to make a request.
Use one of the following lenses to modify other fields as desired:
bgiRegistryId
- 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.bgiRepositoryName
- The repository that contains the images to describe.bgiImageIds
- A list of image ID references that correspond to images to describe. The format of theimageIds
reference isimageTag=tag
orimageDigest=digest
.
data BatchGetImage Source #
See: batchGetImage
smart constructor.
Request Lenses
bgiRegistryId :: Lens' BatchGetImage (Maybe Text) Source #
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.
bgiRepositoryName :: Lens' BatchGetImage Text Source #
The repository that contains the images to describe.
bgiImageIds :: Lens' BatchGetImage [ImageIdentifier] Source #
A list of image ID references that correspond to images to describe. The format of the imageIds
reference is imageTag=tag
or imageDigest=digest
.
Destructuring the Response
batchGetImageResponse Source #
Creates a value of BatchGetImageResponse
with the minimum fields required to make a request.
Use one of the following lenses to modify other fields as desired:
bgirsImages
- A list of image objects corresponding to the image references in the request.bgirsFailures
- Any failures associated with the call.bgirsResponseStatus
- -- | The response status code.
data BatchGetImageResponse Source #
See: batchGetImageResponse
smart constructor.
Response Lenses
bgirsImages :: Lens' BatchGetImageResponse [Image] Source #
A list of image objects corresponding to the image references in the request.
bgirsFailures :: Lens' BatchGetImageResponse [ImageFailure] Source #
Any failures associated with the call.
bgirsResponseStatus :: Lens' BatchGetImageResponse Int Source #
- - | The response status code.