Class: Aws::ECR::Types::ListImagesResponse
- Inherits:
-
Struct
- Object
- Struct
- Aws::ECR::Types::ListImagesResponse
- Includes:
- Structure
- Defined in:
- 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 future `ListImages` request.
Instance Attribute Details
#image_ids ⇒ Array<Types::ImageIdentifier>
The list of image IDs for the requested repository.
2807 2808 2809 2810 2811 2812 |
# File 'lib/aws-sdk-ecr/types.rb', line 2807 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.
2807 2808 2809 2810 2811 2812 |
# File 'lib/aws-sdk-ecr/types.rb', line 2807 class ListImagesResponse < Struct.new( :image_ids, :next_token) SENSITIVE = [] include Aws::Structure end |