Package software.amazon.awssdk.core
Interface SdkPlugin
-
- All Superinterfaces:
AutoCloseable,SdkAutoCloseable
- Functional Interface:
- This is a functional interface and can therefore be used as the assignment target for a lambda expression or method reference.
@ThreadSafe @FunctionalInterface public interface SdkPlugin extends SdkAutoCloseable
A plugin modifies a client's configuration when the client is created or at request execution time.
-
-
Method Summary
All Methods Instance Methods Abstract Methods Default Methods Modifier and Type Method Description default voidclose()voidconfigureClient(SdkServiceClientConfiguration.Builder config)Modify the provided client configuration.
-
-
-
Method Detail
-
configureClient
void configureClient(SdkServiceClientConfiguration.Builder config)
Modify the provided client configuration.
-
close
default void close()
- Specified by:
closein interfaceAutoCloseable- Specified by:
closein interfaceSdkAutoCloseable
-
-