Package software.amazon.awssdk.crt.s3
Class S3MetaRequestOptions
- java.lang.Object
-
- software.amazon.awssdk.crt.s3.S3MetaRequestOptions
-
public class S3MetaRequestOptions extends Object
-
-
Nested Class Summary
Nested Classes Modifier and Type Class Description static classS3MetaRequestOptions.MetaRequestTypeA Meta Request represents a group of generated requests that are being done on behalf of the original request.
-
Constructor Summary
Constructors Constructor Description S3MetaRequestOptions()
-
Method Summary
All Methods Instance Methods Concrete Methods Modifier and Type Method Description ChecksumAlgorithmgetChecksumAlgorithm()CredentialsProvidergetCredentialsProvider()URIgetEndpoint()HttpRequestgetHttpRequest()S3MetaRequestOptions.MetaRequestTypegetMetaRequestType()S3MetaRequestResponseHandlergetResponseHandler()StringgetResumeToken()booleangetValidateChecksum()S3MetaRequestOptionswithChecksumAlgorithm(ChecksumAlgorithm checksumAlgorithm)S3MetaRequestOptionswithCredentialsProvider(CredentialsProvider credentialsProvider)S3MetaRequestOptionswithEndpoint(URI endpoint)S3MetaRequestOptionswithHttpRequest(HttpRequest httpRequest)S3MetaRequestOptionswithMetaRequestType(S3MetaRequestOptions.MetaRequestType metaRequestType)S3MetaRequestOptionswithResponseHandler(S3MetaRequestResponseHandler responseHandler)S3MetaRequestOptionswithResumeToken(String resumeToken)S3MetaRequestOptionswithValidateChecksum(boolean validateChecksum)
-
-
-
Method Detail
-
withMetaRequestType
public S3MetaRequestOptions withMetaRequestType(S3MetaRequestOptions.MetaRequestType metaRequestType)
-
getMetaRequestType
public S3MetaRequestOptions.MetaRequestType getMetaRequestType()
-
withChecksumAlgorithm
public S3MetaRequestOptions withChecksumAlgorithm(ChecksumAlgorithm checksumAlgorithm)
-
getChecksumAlgorithm
public ChecksumAlgorithm getChecksumAlgorithm()
-
withValidateChecksum
public S3MetaRequestOptions withValidateChecksum(boolean validateChecksum)
-
getValidateChecksum
public boolean getValidateChecksum()
-
withHttpRequest
public S3MetaRequestOptions withHttpRequest(HttpRequest httpRequest)
-
getHttpRequest
public HttpRequest getHttpRequest()
-
withResponseHandler
public S3MetaRequestOptions withResponseHandler(S3MetaRequestResponseHandler responseHandler)
-
getResponseHandler
public S3MetaRequestResponseHandler getResponseHandler()
-
withCredentialsProvider
public S3MetaRequestOptions withCredentialsProvider(CredentialsProvider credentialsProvider)
-
getCredentialsProvider
public CredentialsProvider getCredentialsProvider()
-
withEndpoint
public S3MetaRequestOptions withEndpoint(URI endpoint)
-
getEndpoint
public URI getEndpoint()
-
withResumeToken
public S3MetaRequestOptions withResumeToken(String resumeToken)
-
getResumeToken
public String getResumeToken()
-
-