Interface Apache5HttpClient.Builder
- All Superinterfaces:
Buildable
,SdkBuilder<Apache5HttpClient.Builder,
,SdkHttpClient> SdkHttpClient.Builder<Apache5HttpClient.Builder>
- Enclosing class:
Apache5HttpClient
SdkHttpClient
. The factory can be configured through the builder Apache5HttpClient.builder()
, once built it can create a SdkHttpClient
via SdkHttpClient.Builder.build()
or can be passed to the SDK
client builders directly to have the SDK create and manage the HTTP client. See documentation on the service's respective
client builder for more information on configuring the HTTP layer.
SdkHttpClient httpClient = Apache5HttpClient.builder() .socketTimeout(Duration.ofSeconds(10)) .build();
-
Method Summary
Modifier and TypeMethodDescriptionauthSchemeRegistry
(org.apache.hc.core5.http.config.Registry<org.apache.hc.client5.http.auth.AuthSchemeFactory> authSchemeRegistry) Configure the authentication scheme registry that can be used to obtain the corresponding authentication scheme implementation for a given type of authorization challenge.connectionAcquisitionTimeout
(Duration connectionAcquisitionTimeout) The amount of time to wait when acquiring a connection from the pool before giving up and timing out.connectionMaxIdleTime
(Duration maxIdleConnectionTimeout) Configure the maximum amount of time that a connection should be allowed to remain open while idle.connectionTimeout
(Duration connectionTimeout) The amount of time to wait when initially establishing a connection before giving up and timing out.connectionTimeToLive
(Duration connectionTimeToLive) The maximum amount of time that a connection should be allowed to remain open, regardless of usage frequency.credentialsProvider
(org.apache.hc.client5.http.auth.CredentialsProvider credentialsProvider) Configuration that defines a custom credential provider for HTTP requests.dnsResolver
(org.apache.hc.client5.http.DnsResolver dnsResolver) Configuration that defines a DNS resolver.expectContinueEnabled
(Boolean expectContinueEnabled) Configure whether the client should send an HTTP expect-continue handshake before each request.httpRoutePlanner
(org.apache.hc.client5.http.routing.HttpRoutePlanner proxyConfiguration) Configuration that defines an HTTP route planner that computes the route an HTTP request should take.localAddress
(InetAddress localAddress) Configure the local address that the HTTP client should use for communication.maxConnections
(Integer maxConnections) The maximum number of connections allowed in the connection pool.proxyConfiguration
(ProxyConfiguration proxyConfiguration) Configuration that defines how to communicate via an HTTP proxy.socketFactory
(org.apache.hc.client5.http.ssl.SSLConnectionSocketFactory socketFactory) Configuration that defines a custom Socket factory.socketTimeout
(Duration socketTimeout) The amount of time to wait for data to be transferred over an established, open connection before the connection is timed out.tcpKeepAlive
(Boolean keepConnectionAlive) Configure whether to enable or disable TCP KeepAlive.tlsKeyManagersProvider
(TlsKeyManagersProvider tlsKeyManagersProvider) Configure theTlsKeyManagersProvider
that will provide theKeyManager
s to use when constructing the SSL context.tlsTrustManagersProvider
(TlsTrustManagersProvider tlsTrustManagersProvider) Configure theTlsTrustManagersProvider
that will provide theTrustManager
s to use when constructing the SSL context.useIdleConnectionReaper
(Boolean useConnectionReaper) Configure whether the idle connections in the connection pool should be closed asynchronously.Methods inherited from interface software.amazon.awssdk.utils.builder.SdkBuilder
applyMutation
Methods inherited from interface software.amazon.awssdk.http.SdkHttpClient.Builder
build, buildWithDefaults
-
Method Details
-
socketTimeout
The amount of time to wait for data to be transferred over an established, open connection before the connection is timed out. A duration of 0 means infinity, and is not recommended. -
connectionTimeout
The amount of time to wait when initially establishing a connection before giving up and timing out. A duration of 0 means infinity, and is not recommended. -
connectionAcquisitionTimeout
The amount of time to wait when acquiring a connection from the pool before giving up and timing out.- Parameters:
connectionAcquisitionTimeout
- the timeout duration- Returns:
- this builder for method chaining.
-
maxConnections
The maximum number of connections allowed in the connection pool. Each built HTTP client has its own private connection pool. -
proxyConfiguration
Configuration that defines how to communicate via an HTTP proxy. -
localAddress
Configure the local address that the HTTP client should use for communication. -
expectContinueEnabled
Configure whether the client should send an HTTP expect-continue handshake before each request. -
connectionTimeToLive
The maximum amount of time that a connection should be allowed to remain open, regardless of usage frequency.Note: A duration of 0 is treated as infinite to maintain backward compatibility with Apache 4.x behavior. The SDK handles this internally by not setting the TTL when the value is 0.
-
connectionMaxIdleTime
Configure the maximum amount of time that a connection should be allowed to remain open while idle. -
useIdleConnectionReaper
Configure whether the idle connections in the connection pool should be closed asynchronously.When enabled, connections left idling for longer than
connectionMaxIdleTime(Duration)
will be closed. This will not close connections currently in use. By default, this is enabled. -
dnsResolver
Configuration that defines a DNS resolver. If no matches are found, the default resolver is used. -
socketFactory
Apache5HttpClient.Builder socketFactory(org.apache.hc.client5.http.ssl.SSLConnectionSocketFactory socketFactory) Configuration that defines a custom Socket factory. If set to a null value, a default factory is used.When set to a non-null value, the use of a custom factory implies the configuration options TRUST_ALL_CERTIFICATES, TLS_TRUST_MANAGERS_PROVIDER, and TLS_KEY_MANAGERS_PROVIDER are ignored.
-
httpRoutePlanner
Apache5HttpClient.Builder httpRoutePlanner(org.apache.hc.client5.http.routing.HttpRoutePlanner proxyConfiguration) Configuration that defines an HTTP route planner that computes the route an HTTP request should take. May not be used in conjunction withproxyConfiguration(ProxyConfiguration)
. -
credentialsProvider
Apache5HttpClient.Builder credentialsProvider(org.apache.hc.client5.http.auth.CredentialsProvider credentialsProvider) Configuration that defines a custom credential provider for HTTP requests. May not be used in conjunction withProxyConfiguration.username()
andProxyConfiguration.password()
. -
tcpKeepAlive
Configure whether to enable or disable TCP KeepAlive. The configuration will be passed to the socket optionSocketOptions.SO_KEEPALIVE
.By default, this is disabled.
When enabled, the actual KeepAlive mechanism is dependent on the Operating System and therefore additional TCP KeepAlive values (like timeout, number of packets, etc) must be configured via the Operating System (sysctl on Linux/Mac, and Registry values on Windows).
-
tlsKeyManagersProvider
Configure theTlsKeyManagersProvider
that will provide theKeyManager
s to use when constructing the SSL context.The default used by the client will be
SystemPropertyTlsKeyManagersProvider
. Configure an instance ofNoneTlsKeyManagersProvider
or another implementation ofTlsKeyManagersProvider
to override it. -
tlsTrustManagersProvider
Apache5HttpClient.Builder tlsTrustManagersProvider(TlsTrustManagersProvider tlsTrustManagersProvider) Configure theTlsTrustManagersProvider
that will provide theTrustManager
s to use when constructing the SSL context. -
authSchemeRegistry
Apache5HttpClient.Builder authSchemeRegistry(org.apache.hc.core5.http.config.Registry<org.apache.hc.client5.http.auth.AuthSchemeFactory> authSchemeRegistry) Configure the authentication scheme registry that can be used to obtain the corresponding authentication scheme implementation for a given type of authorization challenge.
-