Home
last modified time | relevance | path

Searched refs:SdkHttpExecutionAttributes (Results 1 – 8 of 8) sorted by relevance

/external/aws-sdk-java-v2/http-client-spi/src/main/java/software/amazon/awssdk/http/
DSdkHttpExecutionAttributes.java32 public final class SdkHttpExecutionAttributes implements ToCopyableBuilder<SdkHttpExecutionAttribut… class
33 SdkHttpExecutionAttributes> {
36 private SdkHttpExecutionAttributes(Builder builder) { in SdkHttpExecutionAttributes() method in SdkHttpExecutionAttributes
67 SdkHttpExecutionAttributes that = (SdkHttpExecutionAttributes) o; in equals()
77 …nal class Builder implements CopyableBuilder<SdkHttpExecutionAttributes.Builder, SdkHttpExecutionA…
90 … public <T> SdkHttpExecutionAttributes.Builder put(SdkHttpExecutionAttribute<T> key, T value) { in put()
99 …public SdkHttpExecutionAttributes.Builder putAll(Map<? extends SdkHttpExecutionAttribute<?>, ?> at… in putAll()
105 public SdkHttpExecutionAttributes build() { in build()
106 return new SdkHttpExecutionAttributes(this); in build()
/external/aws-sdk-java-v2/http-client-spi/src/main/java/software/amazon/awssdk/http/async/
DAsyncExecuteRequest.java21 import software.amazon.awssdk.http.SdkHttpExecutionAttributes;
38 private final SdkHttpExecutionAttributes sdkHttpExecutionAttributes;
87 public SdkHttpExecutionAttributes httpExecutionAttributes() { in httpExecutionAttributes()
157 Builder httpExecutionAttributes(SdkHttpExecutionAttributes executionAttributes); in httpExecutionAttributes()
168 …private SdkHttpExecutionAttributes.Builder executionAttributesBuilder = SdkHttpExecutionAttributes
207 public Builder httpExecutionAttributes(SdkHttpExecutionAttributes executionAttributes) { in httpExecutionAttributes()
/external/aws-sdk-java-v2/http-client-spi/src/test/java/software/amazon/awssdk/http/
DSdkHttpExecutionAttributesTest.java32 EqualsVerifier.forClass(SdkHttpExecutionAttributes.class) in equalsAndHashcode()
40 SdkHttpExecutionAttributes attributes = SdkHttpExecutionAttributes.builder() in getAttribute_shouldReturnCorrectValue()
/external/aws-sdk-java-v2/services-custom/s3-transfer-manager/src/main/java/software/amazon/awssdk/transfer/s3/internal/
DCrtS3TransferManager.java31 import software.amazon.awssdk.http.SdkHttpExecutionAttributes;
70 Consumer<SdkHttpExecutionAttributes.Builder> attachObservable = in uploadFile()
173 Consumer<SdkHttpExecutionAttributes.Builder> attachResumeToken = in doResumeUpload()
196 … Consumer<SdkHttpExecutionAttributes.Builder> builderMutation) { in attachSdkAttribute()
197 SdkHttpExecutionAttributes modifiedAttributes = in attachSdkAttribute()
200 … .orElseGet(() -> SdkHttpExecutionAttributes.builder().applyMutation(builderMutation).build()); in attachSdkAttribute()
/external/aws-sdk-java-v2/core/sdk-core/src/main/java/software/amazon/awssdk/core/interceptor/
DSdkInternalExecutionAttribute.java30 import software.amazon.awssdk.http.SdkHttpExecutionAttributes;
74 … public static final ExecutionAttribute<SdkHttpExecutionAttributes> SDK_HTTP_EXECUTION_ATTRIBUTES =
/external/aws-sdk-java-v2/services/s3/src/main/java/software/amazon/awssdk/services/s3/internal/crt/
DDefaultS3CrtAsyncClient.java55 import software.amazon.awssdk.http.SdkHttpExecutionAttributes;
331SdkHttpExecutionAttributes existingHttpAttributes = executionAttributes.getAttribute(SDK_HTTP_EXEC… in afterMarshalling()
333 SdkHttpExecutionAttributes.Builder builder = existingHttpAttributes != null ? in afterMarshalling()
335 SdkHttpExecutionAttributes.builder(); in afterMarshalling()
337 SdkHttpExecutionAttributes attributes = in afterMarshalling()
DS3CrtAsyncHttpClient.java51 import software.amazon.awssdk.http.SdkHttpExecutionAttributes;
135 SdkHttpExecutionAttributes httpExecutionAttributes = asyncRequest.httpExecutionAttributes(); in execute()
177 …private AwsSigningConfig awsSigningConfig(Region signingRegion, SdkHttpExecutionAttributes httpExe… in awsSigningConfig()
/external/aws-sdk-java-v2/services-custom/s3-transfer-manager/src/test/java/software/amazon/awssdk/transfer/s3/internal/
DS3TransferManagerUploadPauseAndResumeTest.java42 import software.amazon.awssdk.http.SdkHttpExecutionAttributes;
177 SdkHttpExecutionAttributes attribute = in resumeUploadFile_hasValidResumeToken_shouldResumeUpload()
193 SdkHttpExecutionAttributes attribute = in verifyActualPutObjectRequestNotResumed()