Uses of Class
org.jclouds.s3.options.ListBucketOptions
-
Packages that use ListBucketOptions Package Description org.jclouds.s3 This package contains an Amazon S3 client implemented byHttpCommandExecutorService
commands.org.jclouds.s3.blobstore.functions org.jclouds.s3.options This package contains request options for S3 REST commands. -
-
Uses of ListBucketOptions in org.jclouds.s3
Methods in org.jclouds.s3 with parameters of type ListBucketOptions Modifier and Type Method Description static PagedIterable<ObjectMetadata>
S3. listBucket(S3Client s3Client, String bucket, ListBucketOptions options)
List all objects in a bucket, in a way that manages pagination, based on the criteria in theListBucketOptions
passed in.ListBucketResponse
S3Client. listBucket(String bucketName, ListBucketOptions... options)
Retrieve aS3Bucket
listing. -
Uses of ListBucketOptions in org.jclouds.s3.blobstore.functions
Methods in org.jclouds.s3.blobstore.functions that return ListBucketOptions Modifier and Type Method Description ListBucketOptions
ContainerToBucketListOptions. apply(ListContainerOptions from)
-
Uses of ListBucketOptions in org.jclouds.s3.options
Fields in org.jclouds.s3.options declared as ListBucketOptions Modifier and Type Field Description static ListBucketOptions
ListBucketOptions. NONE
Methods in org.jclouds.s3.options that return ListBucketOptions Modifier and Type Method Description ListBucketOptions
ListBucketOptions. afterMarker(String marker)
Indicates where in the bucket to begin listing.static ListBucketOptions
ListBucketOptions.Builder. afterMarker(String marker)
ListBucketOptions
ListBucketOptions. clone()
static ListBucketOptions
ListBucketOptions.Builder. delimiter(String delimiter)
ListBucketOptions
ListBucketOptions. delimiter(String 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 in the CommonPrefixes collection.static ListBucketOptions
ListBucketOptions.Builder. maxResults(int maxKeys)
ListBucketOptions
ListBucketOptions. maxResults(int maxKeys)
The maximum number of keys you'd like to see in the response body.static ListBucketOptions
ListBucketOptions.Builder. withPrefix(String prefix)
ListBucketOptions
ListBucketOptions. withPrefix(String prefix)
Limits the response to keys which begin with the indicated prefix.
-