Class ApacheHttpClient
java.lang.Object
software.amazon.awssdk.http.apache.ApacheHttpClient
- All Implemented Interfaces:
AutoCloseable
,SdkHttpClient
,SdkAutoCloseable
An implementation of
SdkHttpClient
that uses Apache HTTP client to communicate with the service. This is the most
powerful synchronous client that adds an extra dependency and additional startup latency in exchange for more functionality,
like support for HTTP proxies.
See software.amazon.awssdk.http.urlconnection.UrlConnectionHttpClient for an alternative implementation.
This can be created via builder()
-
Nested Class Summary
Nested ClassesModifier and TypeClassDescriptionstatic interface
Builder for creating an instance ofSdkHttpClient
. -
Field Summary
Fields -
Method Summary
Modifier and TypeMethodDescriptionstatic ApacheHttpClient.Builder
builder()
Each HTTP client implementation should return a well-formed client name that allows requests to be identifiable back to the client that made the request.void
close()
static SdkHttpClient
create()
Create aApacheHttpClient
with the default propertiesprepareRequest
(HttpExecuteRequest request) Create aExecutableHttpRequest
that can be used to execute the HTTP request.
-
Field Details
-
CLIENT_NAME
- See Also:
-
-
Method Details
-
builder
-
create
Create aApacheHttpClient
with the default properties- Returns:
- an
ApacheHttpClient
-
prepareRequest
Description copied from interface:SdkHttpClient
Create aExecutableHttpRequest
that can be used to execute the HTTP request.- Specified by:
prepareRequest
in interfaceSdkHttpClient
- Parameters:
request
- Representation of an HTTP request.- Returns:
- Task that can execute an HTTP request and can be aborted.
-
close
public void close()Description copied from interface:SdkAutoCloseable
- Specified by:
close
in interfaceAutoCloseable
- Specified by:
close
in interfaceSdkAutoCloseable
-
clientName
Description copied from interface:SdkHttpClient
Each HTTP client implementation should return a well-formed client name that allows requests to be identifiable back to the client that made the request. The client name should include the backing implementation as well as the Sync or Async to identify the transmission type of the request. Client names should only include alphanumeric characters. Examples of well formed client names include, ApacheSync, for requests using Apache's synchronous http client or NettyNioAsync for Netty's asynchronous http client.- Specified by:
clientName
in interfaceSdkHttpClient
- Returns:
- String containing the name of the client
-