class Aws::PageableResponse

def respond_to?(method_name, *args)

Other tags:
    Api: - private
def respond_to?(method_name, *args)
  if method_name == :count
    data.respond_to?(:count)
  else
    super
  end
end