Java com.amazonaws.services.s3.model ListObjectsRequest fields, constructors, methods, implement or subclass

Example usage for Java com.amazonaws.services.s3.model ListObjectsRequest fields, constructors, methods, implement or subclass

Introduction

In this page you can find the methods, fields and constructors for com.amazonaws.services.s3.model ListObjectsRequest.

The text is from its open source code.

Constructor

ListObjectsRequest()
Constructs a new ListObjectsRequest object.
ListObjectsRequest(String bucketName, String prefix, String marker, String delimiter, Integer maxKeys)
Constructs a new ListObjectsRequest object and initializes all required and optional object fields.

Method

StringgetBucketName()
Gets the name of the Amazon S3 bucket whose objects are to be listed.
StringgetDelimiter()
Gets the optional delimiter parameter that causes keys that contain the same string between the prefix and the first occurrence of the delimiter to be combined into a single result element in the ObjectListing#getCommonPrefixes() list.
StringgetMarker()
Gets the optional marker parameter indicating where in the bucket to begin listing.
IntegergetMaxKeys()
Gets the optional maxKeys parameter indicating the maximum number of keys to include in the response.
StringgetPrefix()
Gets the optional prefix parameter and restricts the response to keys that begin with the specified prefix.
voidsetBucketName(String bucketName)
Sets the name of the Amazon S3 bucket whose objects are to be listed.
voidsetDelimiter(String delimiter)
Sets the optional delimiter parameter that causes keys that contain the same string between the prefix and the first occurrence of the delimiter to be combined into a single result element in the ObjectListing#getCommonPrefixes() list.
voidsetMarker(String marker)
Sets the optional marker parameter indicating where in the bucket to begin listing.
voidsetMaxKeys(Integer maxKeys)
Sets the optional maxKeys parameter indicating the maximum number of keys to include in the response.
voidsetPrefix(String prefix)
Sets the optional prefix parameter, restricting the response to keys that begin with the specified prefix.
voidsetRequestCredentials(AWSCredentials credentials)
Sets the optional credentials to use for this request, overriding the default credentials set at the client level.
ListObjectsRequestwithBucketName(String bucketName)
Sets the name of the Amazon S3 bucket whose objects are to be listed.
ListObjectsRequestwithDelimiter(String delimiter)
Sets the optional delimiter parameter that 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 ObjectListing#getCommonPrefixes() list.
ListObjectsRequestwithMaxKeys(Integer maxKeys)
Sets the optional maxKeys parameter indicating the maximum number of keys to include in the response.
ListObjectsRequestwithPrefix(String prefix)
Sets the optional prefix parameter restricting the response to keys that begin with the specified prefix.