Package io.awspring.cloud.autoconfigure
Interface AwsAsyncClientCustomizer
public interface AwsAsyncClientCustomizer
Callback interface that can be used to customize a
AwsAsyncClientBuilder.
It gets applied to every configured asynchronous AWS client bean.
- Since:
- 3.3.0
- Author:
- Maciej Walkowiak
-
Method Summary
Modifier and TypeMethodDescriptionvoidcustomize(software.amazon.awssdk.awscore.client.builder.AwsAsyncClientBuilder<?, ?> builder) Callback to customize aAwsAsyncClientBuilderinstance.
-
Method Details
-
customize
void customize(software.amazon.awssdk.awscore.client.builder.AwsAsyncClientBuilder<?, ?> builder) Callback to customize aAwsAsyncClientBuilderinstance.- Parameters:
builder- the client builder to customize
-