Usage
get_bucket(bucket, prefix = NULL, delimiter = NULL, max = NULL,
marker = NULL, parse_response = TRUE, ...)get_bucket_df(bucket, prefix = NULL, delimiter = NULL, max = NULL,
marker = NULL, ...)
Arguments
bucket
Character string with the name of the bucket, or an object of class “s3_bucket”.
prefix
Character string that limits the response to keys that begin with the specified prefix
delimiter
Character string used to group keys. Read the AWS doc for more detail.
max
Integer indicating the maximum number of keys to return. The function will recursively access the bucket in case max > 1000
. Use max = Inf
to retrieve all objects.
marker
Character string that pecifies the key to start with when listing objects in a bucket. Amazon S3 returns object keys in alphabetical order, starting with key after the marker in order.
parse_response
logical, should we attempt to parse the response?
…
Additional arguments passed to s3HTTP
.