Module: Aws::PageableResponse

Defined in:
gems/aws-sdk-core/lib/aws-sdk-core/pageable_response.rb

Overview

Note:

Methods such as to_json will enumerate all of the responses before returning the full response as JSON.

Decorates a Seahorse::Client::Response with paging convenience methods. Some AWS calls provide paged responses to limit the amount of data returned with each response. To optimize for latency, some APIs may return an inconsistent number of responses per page. You should rely on the values of the next_page? method or using enumerable methods such as each rather than the number of items returned to iterate through results. See below for examples.

Paged Responses Are Enumerable

The simplest way to handle paged response data is to use the built-in enumerator in the response object, as shown in the following example.

s3 = Aws::S3::Client.new

s3.list_objects(bucket:'aws-sdk').each do |response|
  puts response.contents.map(&:key)
end

This yields one response object per API call made, and enumerates objects in the named bucket. The SDK retrieves additional pages of data to complete the request.

Handling Paged Responses Manually

To handle paging yourself, use the response’s next_page? method to verify there are more pages to retrieve, or use the last_page? method to verify there are no more pages to retrieve.

If there are more pages, use the next_page method to retrieve the next page of results, as shown in the following example.

s3 = Aws::S3::Client.new

# Get the first page of data
response = s3.list_objects(bucket:'aws-sdk')

# Get additional pages
while response.next_page? do
  response = response.next_page
  # Use the response data here...
  puts response.contents.map(&:key)
end

Defined Under Namespace

Classes: LastPageError

Instance Attribute Summary collapse

Class Method Summary collapse

Instance Method Summary collapse

Instance Attribute Details

#pagerPaging::Pager

Returns:

  • (Paging::Pager)


59
60
61
# File 'gems/aws-sdk-core/lib/aws-sdk-core/pageable_response.rb', line 59

def pager
  @pager
end

Class Method Details

.apply(base) ⇒ Object



51
52
53
54
55
56
# File 'gems/aws-sdk-core/lib/aws-sdk-core/pageable_response.rb', line 51

def self.apply(base)
  base.extend Extension
  base.instance_variable_set(:@last_page, nil)
  base.instance_variable_set(:@more_results, nil)
  base
end

Instance Method Details

#each {|response| ... } ⇒ Enumerable? Also known as: each_page

Yields the current and each following response to the given block.

Yield Parameters:

  • response (Response)

Returns:

  • (Enumerable, nil)

    Returns a new Enumerable if no block is given.



83
84
85
# File 'gems/aws-sdk-core/lib/aws-sdk-core/pageable_response.rb', line 83

def each(&block)
  # Actual implementation is in PageableResponse::Extension
end

#last_page?Boolean

Returns true if there are no more results. Calling #next_page when this method returns false will raise an error.

Returns:

  • (Boolean)


64
65
66
# File 'gems/aws-sdk-core/lib/aws-sdk-core/pageable_response.rb', line 64

def last_page?
  # Actual implementation is in PageableResponse::Extension
end

#next_page(params = {}) ⇒ Seahorse::Client::Response



76
77
78
# File 'gems/aws-sdk-core/lib/aws-sdk-core/pageable_response.rb', line 76

def next_page(params = {})
  # Actual implementation is in PageableResponse::Extension
end

#next_page?Boolean

Returns true if there are more results. Calling #next_page will return the next response.

Returns:

  • (Boolean)


71
72
73
# File 'gems/aws-sdk-core/lib/aws-sdk-core/pageable_response.rb', line 71

def next_page?
  # Actual implementation is in PageableResponse::Extension
end