How to make S3AsyncClient ignore or skip SSL verification in AWS SDK Java 2. x

0

Hi Guys, when i used the AWS SDK Java 2.x , I found the problem

S3AsyncClient s3AsyncClient = S3AsyncClient.builder()
                        .httpClient(httpclient)
                        .credentialsProvider(StaticCredentialsProvider.create(awsCreds))
                        .endpointOverride(URI.create(endpointurl))
                        .region(Region.of(region))
                        .build();

i need the httpclient ignore or skip SSL verification ,What should i coding ?

1 Answer
1
profile pictureAWS
EXPERT
answered a year ago
profile picture
EXPERT
reviewed a year ago

You are not logged in. Log in to post an answer.

A good answer clearly answers the question and provides constructive feedback and encourages professional growth in the question asker.

Guidelines for Answering Questions