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 TypeMethodDescriptionvoid
customize
(software.amazon.awssdk.awscore.client.builder.AwsAsyncClientBuilder<?, ?> builder) Callback to customize aAwsAsyncClientBuilder
instance.
-
Method Details
-
customize
void customize(software.amazon.awssdk.awscore.client.builder.AwsAsyncClientBuilder<?, ?> builder) Callback to customize aAwsAsyncClientBuilder
instance.- Parameters:
builder
- the client builder to customize
-