class Aws::Plugins::ResponsePaging

def add_handlers(handlers, config)

def add_handlers(handlers, config)
  handlers.add(Handler,
    operations: pageable_operations(config),
    step: :initialize,
    priority: 90)
end

def pageable_operations(config)

def pageable_operations(config)
  config.api.operations.inject([]) do |pageable, (name, operation)|
    pageable << name if operation[:pager]
    pageable
  end
end