Uses of Class
com.amazonaws.services.s3.model.GetObjectRequest
Packages that use GetObjectRequest
Package
Description
Synchronous client for accessing Amazon S3.
Classes modeling the various types represented by Amazon S3.
Transfer management.
-
Uses of GetObjectRequest in com.amazonaws.services.s3
Methods in com.amazonaws.services.s3 with parameters of type GetObjectRequestModifier and TypeMethodDescriptionAbstractAmazonS3.getObject
(GetObjectRequest getObjectRequest) AbstractAmazonS3.getObject
(GetObjectRequest getObjectRequest, File destinationFile) AmazonS3.getObject
(GetObjectRequest getObjectRequest) Gets the object stored in Amazon S3 under the specified bucket and key.AmazonS3.getObject
(GetObjectRequest getObjectRequest, File destinationFile) Gets the object metadata for the object stored in Amazon S3 under the specified bucket and key, and saves the object contents to the specified file.AmazonS3Client.getObject
(GetObjectRequest getObjectRequest) AmazonS3Client.getObject
(GetObjectRequest getObjectRequest, File destinationFile) AmazonS3EncryptionClient.getObject
(GetObjectRequest req) AmazonS3EncryptionClient.getObject
(GetObjectRequest req, File dest) -
Uses of GetObjectRequest in com.amazonaws.services.s3.internal.crypto
Methods in com.amazonaws.services.s3.internal.crypto with parameters of type GetObjectRequestModifier and TypeMethodDescriptionCryptoModuleDispatcher.getObjectSecurely
(GetObjectRequest req) CryptoModuleDispatcher.getObjectSecurely
(GetObjectRequest req, File destinationFile) abstract S3Object
S3CryptoModule.getObjectSecurely
(GetObjectRequest req) abstract ObjectMetadata
S3CryptoModule.getObjectSecurely
(GetObjectRequest req, File dest) -
Uses of GetObjectRequest in com.amazonaws.services.s3.model
Subclasses of GetObjectRequest in com.amazonaws.services.s3.modelModifier and TypeClassDescriptionclass
An extension ofGetObjectRequest
to allow additional encryption material description to be specified on a per-request basis.Methods in com.amazonaws.services.s3.model that return GetObjectRequestModifier and TypeMethodDescriptionGetObjectRequest.withBucketName
(String bucketName) Sets the name of the bucket containing the object to be downloaded.Sets the key under which the object to be downloaded is stored.GetObjectRequest.withMatchingETagConstraint
(String eTag) Sets a single ETag constraint to this request.GetObjectRequest.withModifiedSinceConstraint
(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
(String eTag) Sets a single ETag constraint to this request.GetObjectRequest.withPartNumber
(Integer partNumber) Sets the optional part number that indicates the part to be downloaded in a multipart object.GetObjectRequest.withProgressListener
(ProgressListener progressListener) Deprecated.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
(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
(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. -
Uses of GetObjectRequest in com.amazonaws.services.s3.transfer
Methods in com.amazonaws.services.s3.transfer with parameters of type GetObjectRequestModifier and TypeMethodDescriptionTransferManager.download
(GetObjectRequest getObjectRequest, File file) Schedules a new transfer to download data from Amazon S3 and save it to the specified file.TransferManager.download
(GetObjectRequest getObjectRequest, File file, long timeoutMillis) Schedules a new transfer to download data from Amazon S3 and save it to the specified file.TransferManager.download
(GetObjectRequest getObjectRequest, File file, com.amazonaws.services.s3.transfer.internal.S3ProgressListener progressListener) Schedules a new transfer to download data from Amazon S3 and save it to the specified file.TransferManager.download
(GetObjectRequest getObjectRequest, File file, com.amazonaws.services.s3.transfer.internal.S3ProgressListener progressListener, long timeoutMillis) Schedules a new transfer to download data from Amazon S3 and save it to the specified file.
AmazonWebServiceRequest.withGeneralProgressListener(ProgressListener)
instead.