AWS SDK V2: HTTP Proxy Configuration for AWS SDK Clients #83
Unanswered
arunkpatra
asked this question in
Q&A
Replies: 0 comments
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment
Uh oh!
There was an error while loading. Please reload this page.
Uh oh!
There was an error while loading. Please reload this page.
-
AWS SDK V2 has introduced new mechanisms to configure SDKClients, e.g
software.amazon.awssdk.services.sesv2.SesV2Client
or theS3Client
especially the way client configuration overrides are provided while building the client. Any overrides related to the underlyingApacheHttpClient
for all AWS SDK clients are now to be provided using theSdkHttpClient
. Since a feature like the 'http proxy' probably would apply to the entire running application, would it be better to have the capability to auto configure aSdkHttpClient
from thespring-cloud-aws-v3-autoconfigure
module?That way, any other module may use it their SDK Clients (e.g. SES Client) like:
In AutoConfig module we could configure the
The properties to configure the SdkHttpClient would be provided by the user under lets say
spring.cloud.aws.http
?@maciejwalkowiak @eddumelendez @MatejNedic please suggest.
Beta Was this translation helpful? Give feedback.
All reactions