Class: Aws::ECR::Types::ListImagesResponse

Inherits:
Struct
  • Object
show all
Includes:
Structure
Defined in:
lib/aws-sdk-ecr/types.rb

Overview

Instance Attribute Summary collapse

Instance Attribute Details

#image_idsArray<Types::ImageIdentifier>

The list of image IDs for the requested repository.

Returns:



1044
1045
1046
1047
1048
# File 'lib/aws-sdk-ecr/types.rb', line 1044

class ListImagesResponse < Struct.new(
  :image_ids,
  :next_token)
  include Aws::Structure
end

#next_tokenString

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.

Returns:

  • (String)


1044
1045
1046
1047
1048
# File 'lib/aws-sdk-ecr/types.rb', line 1044

class ListImagesResponse < Struct.new(
  :image_ids,
  :next_token)
  include Aws::Structure
end