Class: Aws::ECRPublic::Types::DescribeImagesResponse
- Inherits:
-
Struct
- Object
- Struct
- Aws::ECRPublic::Types::DescribeImagesResponse
- Defined in:
- gems/aws-sdk-ecrpublic/lib/aws-sdk-ecrpublic/types.rb
Overview
Constant Summary collapse
- SENSITIVE =
[]
Instance Attribute Summary collapse
-
#image_details ⇒ Array<Types::ImageDetail>
A list of ImageDetail objects that contain data about the image.
-
#next_token ⇒ String
The
nextToken
value to include in a futureDescribeImages
request.
Instance Attribute Details
#image_details ⇒ Array<Types::ImageDetail>
A list of ImageDetail objects that contain data about the image.
443 444 445 446 447 448 |
# File 'gems/aws-sdk-ecrpublic/lib/aws-sdk-ecrpublic/types.rb', line 443 class DescribeImagesResponse < Struct.new( :image_details, :next_token) SENSITIVE = [] include Aws::Structure end |
#next_token ⇒ String
The nextToken
value to include in a future DescribeImages
request. When the results of a DescribeImages
request exceed
maxResults
, you can use this value to retrieve the next page of
results. If there are no more results to return, this value is
null
.
443 444 445 446 447 448 |
# File 'gems/aws-sdk-ecrpublic/lib/aws-sdk-ecrpublic/types.rb', line 443 class DescribeImagesResponse < Struct.new( :image_details, :next_token) SENSITIVE = [] include Aws::Structure end |