Package software.amazon.awssdk.http
Interface SdkHttpService
- 
 @ThreadSafe public interface SdkHttpService Service Provider interface for HTTP implementations. The core usesServiceLoaderto find appropriate HTTP implementations on the classpath. HTTP implementations that wish to be discovered by the default HTTP provider chain should implement this interface and declare that implementation as a service in the META-INF/service/software.amazon.awssdk.http.SdkHttpService resource. See Service Loader for more information.This interface is simply a factory for SdkHttpClient.Builder. Implementations must be thread safe.
- 
- 
Method SummaryAll Methods Instance Methods Abstract Methods Modifier and Type Method Description SdkHttpClient.BuildercreateHttpClientBuilder()
 
- 
- 
- 
Method Detail- 
createHttpClientBuilderSdkHttpClient.Builder createHttpClientBuilder() - Returns:
- An SdkHttpClient.Buildercapable of creatingSdkHttpClientinstances. This factory should be thread safe.
 
 
- 
 
-