Package software.amazon.awssdk.http
Interface SdkHttpClient
-
- All Superinterfaces:
AutoCloseable
,SdkAutoCloseable
@Immutable @ThreadSafe public interface SdkHttpClient extends SdkAutoCloseable
Interface to take a representation of an HTTP request, make an HTTP call, and return a representation of an HTTP response.Implementations MUST be thread safe.
-
-
Nested Class Summary
Nested Classes Modifier and Type Interface Description static interface
SdkHttpClient.Builder<T extends SdkHttpClient.Builder<T>>
Interface for creating anSdkHttpClient
with service specific defaults applied.
-
Method Summary
All Methods Instance Methods Abstract Methods Default Methods Modifier and Type Method Description default String
clientName()
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.ExecutableHttpRequest
prepareRequest(HttpExecuteRequest request)
Create aExecutableHttpRequest
that can be used to execute the HTTP request.-
Methods inherited from interface software.amazon.awssdk.utils.SdkAutoCloseable
close
-
-
-
-
Method Detail
-
prepareRequest
ExecutableHttpRequest prepareRequest(HttpExecuteRequest request)
Create aExecutableHttpRequest
that can be used to execute the HTTP request.- Parameters:
request
- Representation of an HTTP request.- Returns:
- Task that can execute an HTTP request and can be aborted.
-
clientName
default String clientName()
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.- Returns:
- String containing the name of the client
-
-