All Downloads are FREE. Search and download functionalities are using the official Maven repository.

me.madhead.aws_junit5.common.v2.SdkHttpClientFactory Maven / Gradle / Ivy

package me.madhead.aws_junit5.common.v2;

import software.amazon.awssdk.http.SdkHttpClient;

/**
 * Creates {@link SdkHttpClient} for AWS async clients.
 */
public interface SdkHttpClientFactory {
    /**
     * {@link SdkHttpClient} for an AWS async client. Return {@code null} if the default client should be used.
     *
     * @return {@link SdkHttpClient} for an AWS async client. {@code null} if the default client should be used.
     */
    SdkHttpClient create();
}




© 2015 - 2024 Weber Informatics LLC | Privacy Policy