Uses of Interface
software.amazon.awssdk.services.s3.model.GetObjectRequest.Builder
Packages that use GetObjectRequest.Builder
Package
Description
-
Uses of GetObjectRequest.Builder in software.amazon.awssdk.services.s3
Method parameters in software.amazon.awssdk.services.s3 with type arguments of type GetObjectRequest.BuilderModifier and TypeMethodDescriptiondefault CompletableFuture<GetObjectResponse>S3AsyncClient.getObject(Consumer<GetObjectRequest.Builder> getObjectRequest, Path destinationPath) Retrieves an object from Amazon S3.default <ReturnT> CompletableFuture<ReturnT>S3AsyncClient.getObject(Consumer<GetObjectRequest.Builder> getObjectRequest, AsyncResponseTransformer<GetObjectResponse, ReturnT> asyncResponseTransformer) Retrieves an object from Amazon S3.default ResponseInputStream<GetObjectResponse>S3Client.getObject(Consumer<GetObjectRequest.Builder> getObjectRequest) Retrieves an object from Amazon S3.default GetObjectResponseS3Client.getObject(Consumer<GetObjectRequest.Builder> getObjectRequest, Path destinationPath) Retrieves an object from Amazon S3.default <ReturnT> ReturnTS3Client.getObject(Consumer<GetObjectRequest.Builder> getObjectRequest, ResponseTransformer<GetObjectResponse, ReturnT> responseTransformer) Retrieves an object from Amazon S3.default ResponseBytes<GetObjectResponse>S3Client.getObjectAsBytes(Consumer<GetObjectRequest.Builder> getObjectRequest) Retrieves an object from Amazon S3. -
Uses of GetObjectRequest.Builder in software.amazon.awssdk.services.s3.model
Methods in software.amazon.awssdk.services.s3.model that return GetObjectRequest.BuilderModifier and TypeMethodDescriptionThe bucket name containing the object.static GetObjectRequest.BuilderGetObjectRequest.builder()GetObjectRequest.Builder.checksumMode(String checksumMode) To retrieve the checksum, this mode must be enabled.GetObjectRequest.Builder.checksumMode(ChecksumMode checksumMode) To retrieve the checksum, this mode must be enabled.GetObjectRequest.Builder.expectedBucketOwner(String expectedBucketOwner) The account ID of the expected bucket owner.Return the object only if its entity tag (ETag) is the same as the one specified in this header; otherwise, return a412 Precondition Failederror.GetObjectRequest.Builder.ifModifiedSince(Instant ifModifiedSince) Return the object only if it has been modified since the specified time; otherwise, return a304 Not Modifiederror.GetObjectRequest.Builder.ifNoneMatch(String ifNoneMatch) Return the object only if its entity tag (ETag) is different from the one specified in this header; otherwise, return a304 Not Modifiederror.GetObjectRequest.Builder.ifUnmodifiedSince(Instant ifUnmodifiedSince) Return the object only if it has not been modified since the specified time; otherwise, return a412 Precondition Failederror.Key of the object to get.GetObjectRequest.Builder.overrideConfiguration(Consumer<AwsRequestOverrideConfiguration.Builder> builderConsumer) GetObjectRequest.Builder.overrideConfiguration(AwsRequestOverrideConfiguration overrideConfiguration) GetObjectRequest.Builder.partNumber(Integer partNumber) Part number of the object being read.Downloads the specified byte range of an object.GetObjectRequest.Builder.requestPayer(String requestPayer) Sets the value of the RequestPayer property for this object.GetObjectRequest.Builder.requestPayer(RequestPayer requestPayer) Sets the value of the RequestPayer property for this object.GetObjectRequest.Builder.responseCacheControl(String responseCacheControl) Sets theCache-Controlheader of the response.GetObjectRequest.Builder.responseContentDisposition(String responseContentDisposition) Sets theContent-Dispositionheader of the response.GetObjectRequest.Builder.responseContentEncoding(String responseContentEncoding) Sets theContent-Encodingheader of the response.GetObjectRequest.Builder.responseContentLanguage(String responseContentLanguage) Sets theContent-Languageheader of the response.GetObjectRequest.Builder.responseContentType(String responseContentType) Sets theContent-Typeheader of the response.GetObjectRequest.Builder.responseExpires(Instant responseExpires) Sets theExpiresheader of the response.GetObjectRequest.Builder.sseCustomerAlgorithm(String sseCustomerAlgorithm) Specifies the algorithm to use when decrypting the object (for example,AES256).GetObjectRequest.Builder.sseCustomerKey(String sseCustomerKey) Specifies the customer-provided encryption key that you originally provided for Amazon S3 to encrypt the data before storing it.GetObjectRequest.Builder.sseCustomerKeyMD5(String sseCustomerKeyMD5) Specifies the 128-bit MD5 digest of the customer-provided encryption key according to RFC 1321.GetObjectRequest.toBuilder()Version ID used to reference a specific version of the object.Methods in software.amazon.awssdk.services.s3.model that return types with arguments of type GetObjectRequest.BuilderModifier and TypeMethodDescriptionstatic Class<? extends GetObjectRequest.Builder>GetObjectRequest.serializableBuilderClass() -
Uses of GetObjectRequest.Builder in software.amazon.awssdk.services.s3.presigner.model
Method parameters in software.amazon.awssdk.services.s3.presigner.model with type arguments of type GetObjectRequest.BuilderModifier and TypeMethodDescriptiondefault GetObjectPresignRequest.BuilderGetObjectPresignRequest.Builder.getObjectRequest(Consumer<GetObjectRequest.Builder> getObjectRequest) Configure theGetObjectRequestthat should be presigned.