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
nextTokenvalue to include in a futureListImagesrequest.
Instance Attribute Details
#image_ids ⇒ Array<Types::ImageIdentifier>
The list of image IDs for the requested repository.
3339 3340 3341 3342 3343 3344 |
# File 'gems/aws-sdk-ecr/lib/aws-sdk-ecr/types.rb', line 3339 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.
3339 3340 3341 3342 3343 3344 |
# File 'gems/aws-sdk-ecr/lib/aws-sdk-ecr/types.rb', line 3339 class ListImagesResponse < Struct.new( :image_ids, :next_token) SENSITIVE = [] include Aws::Structure end |