public class GetObjectRequest extends AmazonWebServiceRequest implements SSECustomerKeyProvider, java.io.Serializable
Provides options for downloading an Amazon S3 object.
All GetObjectRequests
must specify a bucket name and key.
Beyond that, requests can also specify:
If you are uploading or accessing KMS-encrypted objects, you need to specify the correct region of the bucket on your client and configure AWS Signature Version 4 for added security. For more information on how to do this, see http://docs.aws.amazon.com/AmazonS3/latest/dev/UsingAWSSDK.html#specify -signature-version
Constructor and Description |
---|
GetObjectRequest(S3ObjectId s3ObjectId) |
GetObjectRequest(java.lang.String bucketName,
java.lang.String key)
Constructs a new
GetObjectRequest with all the required parameters. |
GetObjectRequest(java.lang.String bucketName,
java.lang.String key,
boolean isRequesterPays)
Constructs a new
GetObjectRequest with all the required
parameters. |
GetObjectRequest(java.lang.String bucketName,
java.lang.String key,
java.lang.String versionId)
Constructs a new
GetObjectRequest with all the required parameters. |
Modifier and Type | Method and Description |
---|---|
java.lang.String |
getBucketName()
Gets the name of the bucket containing the object to be downloaded.
|
ProgressListener |
getGeneralProgressListener()
Returns the optional progress listener for receiving updates about object
download status.
|
java.lang.String |
getKey()
Gets the key under which the object to be downloaded is stored.
|
java.util.List<java.lang.String> |
getMatchingETagConstraints()
Gets the optional list of ETag constraints that, when present, must
include a match for the object's current ETag in order for this
request to be executed.
|
java.util.Date |
getModifiedSinceConstraint()
Gets the optional modified constraint that restricts this
request to executing only if the object has been
modified after the specified date.
|
java.util.List<java.lang.String> |
getNonmatchingETagConstraints()
Gets the optional list of ETag constraints that when present, must
not include a match for the object's current ETag in order for this
request to be executed.
|
java.lang.Integer |
getPartNumber()
Returns the optional part number that indicates the part to be downloaded in a multipart object.
|
ProgressListener |
getProgressListener()
Deprecated.
use
getGeneralProgressListener() instead. |
long[] |
getRange()
Gets the optional inclusive byte range within the desired object
that will be downloaded by this request.
|
ResponseHeaderOverrides |
getResponseHeaders()
Returns the headers to be overridden in the service response.
|
S3ObjectId |
getS3ObjectId()
Returns an immutable S3 object id.
|
SSECustomerKey |
getSSECustomerKey()
Returns the optional customer-provided server-side encryption key to use
to encrypt the uploaded object.
|
java.util.Date |
getUnmodifiedSinceConstraint()
Gets the optional unmodified constraint that restricts this
request to executing only if the object has not been
modified after the specified date.
|
java.lang.String |
getVersionId()
Gets the optional version ID specifying which version of the object to
download.
|
boolean |
isRequesterPays()
Returns true if the user has enabled Requester Pays option when
downloading an object from Requester Pays Bucket; else false.
|
void |
setBucketName(java.lang.String bucketName)
Sets the name of the bucket containing the object to be downloaded.
|
void |
setGeneralProgressListener(ProgressListener generalProgressListener)
Sets the optional progress listener for receiving updates about object
download status.
|
void |
setKey(java.lang.String key)
Sets the key under which the object to be downloaded is stored.
|
void |
setMatchingETagConstraints(java.util.List<java.lang.String> eTagList)
Sets the optional list of ETag constraints that when present must
include a match for the object's current ETag in order for this
request to be executed.
|
void |
setModifiedSinceConstraint(java.util.Date date)
Sets the optional modified constraint that restricts this request
to executing only if the object has been modified after the
specified date.
|
void |
setNonmatchingETagConstraints(java.util.List<java.lang.String> eTagList)
Sets the optional list of ETag constraints that when present must
not include a match for the object's current ETag in order for this
request to be executed.
|
void |
setPartNumber(java.lang.Integer partNumber)
Sets the optional part number that indicates the part to be downloaded in a multipart object.
|
void |
setProgressListener(ProgressListener progressListener)
Deprecated.
use
setGeneralProgressListener(ProgressListener)
instead. |
void |
setRange(long start)
Sets the optional inclusive start range within the desired object that the
rest of which will be downloaded by this request.
|
void |
setRange(long start,
long end)
Sets the optional inclusive byte range within the desired object that
will be downloaded by this request.
|
void |
setRequesterPays(boolean isRequesterPays)
Used for downloading an Amazon S3 Object from a Requester Pays Bucket.
|
void |
setResponseHeaders(ResponseHeaderOverrides responseHeaders)
Sets the headers to be overridden in the service response.
|
void |
setS3ObjectId(S3ObjectId s3ObjectId)
Sets the S3 object id for this request.
|
void |
setSSECustomerKey(SSECustomerKey sseKey)
Sets the optional customer-provided server-side encryption key to use to
decrypt this object.
|
void |
setUnmodifiedSinceConstraint(java.util.Date date)
Sets the optional unmodified constraint that restricts this request
to executing only if the object has not been modified after
the specified date.
|
void |
setVersionId(java.lang.String versionId)
Sets the optional version ID specifying which version of the object to
download.
|
GetObjectRequest |
withBucketName(java.lang.String bucketName)
Sets the name of the bucket containing the object to be downloaded.
|
GetObjectRequest |
withGeneralProgressListener(ProgressListener progressListener)
Sets the optional progress listener for receiving updates about object
download status, and returns this updated object so that additional
method calls can be chained together.
|
GetObjectRequest |
withKey(java.lang.String key)
Sets the key under which the object to be downloaded is stored.
|
GetObjectRequest |
withMatchingETagConstraint(java.lang.String eTag)
Sets a single ETag constraint to this request.
|
GetObjectRequest |
withModifiedSinceConstraint(java.util.Date date)
Sets the optional modified constraint that restricts this request
to executing only if the object has been modified after the
specified date.
|
GetObjectRequest |
withNonmatchingETagConstraint(java.lang.String eTag)
Sets a single ETag constraint to this request.
|
GetObjectRequest |
withPartNumber(java.lang.Integer partNumber)
Sets the optional part number that indicates the part to be downloaded in a multipart object.
|
GetObjectRequest |
withProgressListener(ProgressListener progressListener)
Deprecated.
use
withGeneralProgressListener(ProgressListener)
instead. |
GetObjectRequest |
withRange(long start)
Sets the optional inclusive start range within the desired object that the
rest of which will be downloaded by this request.
|
GetObjectRequest |
withRange(long start,
long end)
Sets the optional inclusive byte range within the desired object that
will be downloaded by this request.
|
GetObjectRequest |
withRequesterPays(boolean isRequesterPays)
Used for conducting this operation from a Requester Pays Bucket.
|
GetObjectRequest |
withResponseHeaders(ResponseHeaderOverrides responseHeaders)
Sets the headers to be overridden in the service response and returns
this object, for method chaining.
|
GetObjectRequest |
withS3ObjectId(S3ObjectId s3ObjectId)
Fluent API to set the S3 object id for this request.
|
GetObjectRequest |
withSSECustomerKey(SSECustomerKey sseKey)
Sets the optional customer-provided server-side encryption key to use to
decrypt this object, and returns the updated GetObjectRequest so that
additional method calls may be chained together.
|
GetObjectRequest |
withUnmodifiedSinceConstraint(java.util.Date date)
Sets the optional unmodified constraint that restricts this request
to executing only if the object has not been modified after
the specified date.
|
GetObjectRequest |
withVersionId(java.lang.String versionId)
Sets the optional version ID specifying which version of the object to
download and returns this object, enabling additional method calls to be
chained together.
|
clone, getCloneRoot, getCloneSource, getRequestClientOptions, getRequestCredentials, getRequestMetricCollector, setRequestCredentials, setRequestMetricCollector, withRequestMetricCollector
public GetObjectRequest(java.lang.String bucketName, java.lang.String key)
GetObjectRequest
with all the required parameters.bucketName
- The name of the bucket containing the desired object.key
- The key in the specified bucket under which the object is
stored.GetObjectRequest(String, String, String)
,
GetObjectRequest(String, String, boolean)
public GetObjectRequest(java.lang.String bucketName, java.lang.String key, java.lang.String versionId)
GetObjectRequest
with all the required parameters.bucketName
- The name of the bucket containing the desired object.key
- The key in the specified bucket under which the object is
stored.versionId
- The Amazon S3 version ID specifying a specific version of the
object to download.GetObjectRequest(String, String)
,
GetObjectRequest(String, String, boolean)
public GetObjectRequest(S3ObjectId s3ObjectId)
public GetObjectRequest(java.lang.String bucketName, java.lang.String key, boolean isRequesterPays)
GetObjectRequest
with all the required
parameters.bucketName
- The name of the bucket containing the desired object.key
- The key in the specified bucket under which the object is
stored.isRequesterPays
- If enabled, the requester is charged for downloading the data
from Requester Pays Buckets.GetObjectRequest(String, String)
,
GetObjectRequest(String, String, String)
public java.lang.String getBucketName()
setBucketName(String)
,
withBucketName(String)
public void setBucketName(java.lang.String bucketName)
bucketName
- The name of the bucket containing the object to be downloaded.getBucketName()
,
withBucketName(String)
public GetObjectRequest withBucketName(java.lang.String bucketName)
GetObjectRequest
, enabling additional method
calls to be chained together.bucketName
- The name of the bucket containing the object to be downloaded.GetObjectRequest
, enabling additional method
calls to be chained together.getBucketName()
,
setBucketName(String)
public java.lang.String getKey()
setKey(String)
,
withKey(String)
public void setKey(java.lang.String key)
key
- The key under which the object to be downloaded is stored.getKey()
,
withKey(String)
public GetObjectRequest withKey(java.lang.String key)
GetObjectRequest
, enabling additional method
calls to be chained together.key
- The key under which the object to be downloaded is stored.GetObjectRequest
, enabling additional method
calls to be chained together.getKey()
,
setKey(String)
public java.lang.String getVersionId()
Gets the optional version ID specifying which version of the object to download. If not specified, the most recent version will be downloaded.
Objects created before versioning was enabled or when versioning is
suspended are given the default null
version ID (see
Constants.NULL_VERSION_ID
). Note that the
null
version ID is a valid version ID and is not the
same as not having a version ID.
For more information about enabling versioning for a bucket, see
AmazonS3.setBucketVersioningConfiguration(SetBucketVersioningConfigurationRequest)
.
setVersionId(String)
,
withVersionId(String)
public void setVersionId(java.lang.String versionId)
Objects created before versioning was enabled or when versioning is
suspended will be given the default null
version ID (see
Constants.NULL_VERSION_ID
). Note that the
null
version ID is a valid version ID and is not the
same as not having a version ID.
For more information about enabling versioning for a bucket, see
AmazonS3.setBucketVersioningConfiguration(SetBucketVersioningConfigurationRequest)
.
versionId
- The optional version ID specifying which version of the object
to download.getVersionId()
,
withVersionId(String)
public GetObjectRequest withVersionId(java.lang.String versionId)
Sets the optional version ID specifying which version of the object to download and returns this object, enabling additional method calls to be chained together. If not specified, the most recent version will be downloaded.
Objects created before versioning was enabled or when versioning is
suspended will be given the default or null
version ID (see
Constants.NULL_VERSION_ID
). Note that the
null
version ID is a valid version ID and is not the
same as not having a version ID.
For more information about enabling versioning for a bucket, see
AmazonS3.setBucketVersioningConfiguration(SetBucketVersioningConfigurationRequest)
.
versionId
- The optional version ID specifying which version of the object
to download.getVersionId()
,
setVersionId(String)
public long[] getRange()
Gets the optional inclusive byte range within the desired object that will be downloaded by this request.
The range is returned as
a two element array, containing the start and end index of the byte range.
If no byte range has been specified, the entire object is downloaded and
this method returns null
.
null
if no range has been specified,
and the whole object is
to be downloaded.setRange(long, long)
,
withRange(long, long)
public void setRange(long start, long end)
Sets the optional inclusive byte range within the desired object that will be downloaded by this request.
The first byte in an object has position 0; as an example, the first ten bytes of an object can be downloaded by specifying a range of 0 to 9.
If no byte range is specified, this request downloads the entire object from Amazon S3.
start
- The start of the inclusive byte range to download.end
- The end of the inclusive byte range to download.getRange()
,
withRange(long, long)
public void setRange(long start)
Sets the optional inclusive start range within the desired object that the rest of which will be downloaded by this request.
The first byte in an object has position 0; as an example, the object is of 10 bytes in length, the last 4 bytes can be downloaded by specifying the start range as 6.
If no byte range is specified, this request downloads the entire object from Amazon S3.
start
- The start of the inclusive byte range to download.setRange(long, long)
,
withRange(long)
public GetObjectRequest withRange(long start, long end)
Sets the optional inclusive byte range within the desired object that
will be downloaded by this request.
Returns this GetObjectRequest
, enabling additional method
calls to be chained together.
The first byte in an object has position 0; as an example, the first ten bytes of an object can be downloaded by specifying a range of 0 to 9.
If no byte range is specified, this request downloads the entire object from Amazon S3.
start
- The start of the inclusive byte range to download.end
- The end of the inclusive byte range to download.GetObjectRequest
, enabling additional method
calls to be chained together.getRange()
,
setRange(long, long)
public GetObjectRequest withRange(long start)
Sets the optional inclusive start range within the desired object that the rest of which will be downloaded by this request.
Returns thisGetObjectRequest
, enabling additional method
calls to be chained together.
The first byte in an object has position 0; as an example, the object is of 10 bytes in length, the last 4 bytes can be downloaded by specifying the start range as 6.
If no byte range is specified, this request downloads the entire object from Amazon S3.
start
- The start of the inclusive byte range to download.GetObjectRequest
, enabling additional method
calls to be chained together.withRange(long, long)
,
setRange(long)
public java.util.List<java.lang.String> getMatchingETagConstraints()
setMatchingETagConstraints(List)
,
withMatchingETagConstraint(String)
public void setMatchingETagConstraints(java.util.List<java.lang.String> eTagList)
eTagList
- The optional list of ETag constraints that must include a
match for the object's current ETag in order for this request
to be executed.getMatchingETagConstraints()
,
withMatchingETagConstraint(String)
public GetObjectRequest withMatchingETagConstraint(java.lang.String eTag)
GetObjectRequest
, enabling additional method
calls to be chained together.
Multiple ETag constraints can be added to a request, but one must match the object's current ETag in order for this request to be executed. If none of the ETag constraints added to this request match the object's current ETag, this request will not be executed by Amazon S3.
eTag
- The matching ETag constraint to add to this request.GetObjectRequest
, enabling additional method
calls to be chained together.getMatchingETagConstraints()
,
setMatchingETagConstraints(List)
public java.util.List<java.lang.String> getNonmatchingETagConstraints()
setNonmatchingETagConstraints(List)
,
withNonmatchingETagConstraint(String)
public void setNonmatchingETagConstraints(java.util.List<java.lang.String> eTagList)
eTagList
- The list of ETag constraints that, when present, must not
include a match for the object's current ETag in order for
this request to be executed.getNonmatchingETagConstraints()
,
withNonmatchingETagConstraint(String)
public GetObjectRequest withNonmatchingETagConstraint(java.lang.String eTag)
GetObjectRequest
, enabling additional method
calls to be chained together.
Multiple ETag constraints can be added to a request, but all ETag constraints must not match the object's current ETag in order for this request to be executed. If any entry in the non-matching ETag constraint list matches the object's current ETag, this request will not be executed by Amazon S3.
eTag
- The non-matching ETag constraint to add to this request.GetObjectRequest
, enabling additional method
calls to be chained together.getNonmatchingETagConstraints()
,
setNonmatchingETagConstraints(List)
public java.util.Date getUnmodifiedSinceConstraint()
setUnmodifiedSinceConstraint(Date)
,
withUnmodifiedSinceConstraint(Date)
public void setUnmodifiedSinceConstraint(java.util.Date date)
Note that Amazon S3 will ignore any dates occurring in the future.
date
- The unmodified constraint that restricts this request to
executing only if the object has not been
modified after this date.getUnmodifiedSinceConstraint()
,
withUnmodifiedSinceConstraint(Date)
public GetObjectRequest withUnmodifiedSinceConstraint(java.util.Date date)
GetObjectRequest
, enabling additional method
calls to be chained together.
Note that Amazon S3 will ignore any dates occurring in the future.
date
- The unmodified constraint that restricts this request to
executing only if the object has not been
modified after this date.GetObjectRequest
, enabling additional method
calls to be chained together.getUnmodifiedSinceConstraint()
,
setUnmodifiedSinceConstraint(Date)
public java.util.Date getModifiedSinceConstraint()
setModifiedSinceConstraint(Date)
,
withModifiedSinceConstraint(Date)
public void setModifiedSinceConstraint(java.util.Date date)
Note that Amazon S3 will ignore any dates occurring in the future.
date
- The modified constraint that restricts this request to
executing only if the object has been modified
after the specified date.getModifiedSinceConstraint()
,
withModifiedSinceConstraint(Date)
public GetObjectRequest withModifiedSinceConstraint(java.util.Date date)
GetObjectRequest
, enabling additional method
calls to be chained together.
Note that Amazon S3 will ignore any dates occurring in the future.
date
- The modified constraint that restricts this request to
executing only if the object has been modified
after the specified date.GetObjectRequest
, enabling additional method
calls to be chained together.getModifiedSinceConstraint()
,
setModifiedSinceConstraint(Date)
public ResponseHeaderOverrides getResponseHeaders()
public void setResponseHeaders(ResponseHeaderOverrides responseHeaders)
responseHeaders
- The headers to be overridden in the service response.public GetObjectRequest withResponseHeaders(ResponseHeaderOverrides responseHeaders)
responseHeaders
- The headers to be overridden in the service response.GetObjectRequest
for method chaining.@Deprecated public void setProgressListener(ProgressListener progressListener)
setGeneralProgressListener(ProgressListener)
instead.progressListener
- The legacy progress listener that is used exclusively for Amazon S3 client.@Deprecated public ProgressListener getProgressListener()
getGeneralProgressListener()
instead.@Deprecated public GetObjectRequest withProgressListener(ProgressListener progressListener)
withGeneralProgressListener(ProgressListener)
instead.progressListener
- The legacy progress listener that is used exclusively for Amazon S3 client.public void setGeneralProgressListener(ProgressListener generalProgressListener)
setGeneralProgressListener
in class AmazonWebServiceRequest
generalProgressListener
- The new progress listener.public ProgressListener getGeneralProgressListener()
getGeneralProgressListener
in class AmazonWebServiceRequest
public GetObjectRequest withGeneralProgressListener(ProgressListener progressListener)
withGeneralProgressListener
in class AmazonWebServiceRequest
generalProgressListener
- The new progress listener.public boolean isRequesterPays()
If a bucket is enabled for Requester Pays, then any attempt to read an object from it without Requester Pays enabled will result in a 403 error and the bucket owner will be charged for the request.
Enabling Requester Pays disables the ability to have anonymous access to this bucket
public void setRequesterPays(boolean isRequesterPays)
If a bucket is enabled for Requester Pays, then any attempt to read an object from it without Requester Pays enabled will result in a 403 error and the bucket owner will be charged for the request.
Enabling Requester Pays disables the ability to have anonymous access to this bucket
isRequesterPays
- Enable Requester Pays option for the operation.public GetObjectRequest withRequesterPays(boolean isRequesterPays)
If a bucket is enabled for Requester Pays, then any attempt to upload or download an object from it without Requester Pays enabled will result in a 403 error and the bucket owner will be charged for the request.
Enabling Requester Pays disables the ability to have anonymous access to this bucket.
isRequesterPays
- Enable Requester Pays option for the operation.public SSECustomerKey getSSECustomerKey()
SSECustomerKeyProvider
getSSECustomerKey
in interface SSECustomerKeyProvider
public void setSSECustomerKey(SSECustomerKey sseKey)
sseKey
- The optional customer-provided server-side encryption key to
use to decrypt this object.public GetObjectRequest withSSECustomerKey(SSECustomerKey sseKey)
sseKey
- The optional customer-provided server-side encryption key to
use to decrypt this object.public java.lang.Integer getPartNumber()
Returns the optional part number that indicates the part to be downloaded in a multipart object.
setPartNumber(Integer)
,
withPartNumber(Integer)
public void setPartNumber(java.lang.Integer partNumber)
Sets the optional part number that indicates the part to be downloaded in a multipart object.
The valid range for part number is 1 - 10000 inclusive. Part numbers are 1 based. If an object has 1 part, partNumber=1 would be the correct not 0. For partNumber < 1, an AmazonS3Exception is thrown with response code 400 bad request. For partNumber larger than actual part count, an AmazonS3Exception is thrown with response code 416 Request Range Not Satisfiable.
partNumber
- The part number representing a part in a multipart object.getPartNumber()
,
withPartNumber(Integer)
public GetObjectRequest withPartNumber(java.lang.Integer partNumber)
Sets the optional part number that indicates the part to be downloaded in a multipart object.
The valid range for part number is 1 - 10000 inclusive. Part numbers are 1 based. If an object has 1 part, partNumber=1 would be the correct not 0. For partNumber < 1, an AmazonS3Exception is thrown with response code 400 bad request. For partNumber larger than actual part count, an AmazonS3Exception is thrown with response code 416 Request Range Not Satisfiable.
partNumber
- The part number representing a part in a multipart object.GetObjectRequest
, enabling additional method
calls to be chained together.getPartNumber()
,
setPartNumber(Integer)
public S3ObjectId getS3ObjectId()
public void setS3ObjectId(S3ObjectId s3ObjectId)
public GetObjectRequest withS3ObjectId(S3ObjectId s3ObjectId)
Copyright © 2018 Amazon Web Services, Inc. All Rights Reserved.