Method: S3::ObjectsExtension#find_all

Defined in:
lib/s3/objects_extension.rb

#find_all(options = {}) ⇒ Object

Finds the objects in the bucket.

Options

  • :prefix - Limits the response to keys which begin with the indicated prefix

  • :marker - Indicates where in the bucket to begin listing

  • :max_keys - The maximum number of keys you’d like to see

  • :delimiter - Causes keys that contain the same string between the prefix and the first occurrence of the delimiter to be rolled up into a single result element



28
29
30
# File 'lib/s3/objects_extension.rb', line 28

def find_all(options = {})
  proxy_owner.send(:list_bucket, options)
end