Class: Aws::ECR::Types::ListImagesResponse
- Inherits:
-
Struct
- Object
- Struct
- Aws::ECR::Types::ListImagesResponse
- Defined in:
- gems/aws-sdk-ecr/lib/aws-sdk-ecr/types.rb
Overview
Constant Summary collapse
- SENSITIVE =
[]
Instance Attribute Summary collapse
-
#image_ids ⇒ Array<Types::ImageIdentifier>
The list of image IDs for the requested repository.
-
#next_token ⇒ String
The
nextToken
value to include in a futureListImages
request.
Instance Attribute Details
#image_ids ⇒ Array<Types::ImageIdentifier>
The list of image IDs for the requested repository.
2810 2811 2812 2813 2814 2815 |
# File 'gems/aws-sdk-ecr/lib/aws-sdk-ecr/types.rb', line 2810 class ListImagesResponse < Struct.new( :image_ids, :next_token) SENSITIVE = [] include Aws::Structure end |
#next_token ⇒ String
The nextToken
value to include in a future ListImages
request.
When the results of a ListImages
request exceed maxResults
, this
value can be used to retrieve the next page of results. This value
is null
when there are no more results to return.
2810 2811 2812 2813 2814 2815 |
# File 'gems/aws-sdk-ecr/lib/aws-sdk-ecr/types.rb', line 2810 class ListImagesResponse < Struct.new( :image_ids, :next_token) SENSITIVE = [] include Aws::Structure end |