S3ClientBuilder.Build() is not working

0

Hi When I try to use below code. builder.build() is not throwing any error. and its not responding anything. Can anyone help on this.

S3ClientBuilder builder = S3Client.builder() .credentialsProvider(() -> StaticCredentialsProvider.create(credentials).resolveCredentials()) .region(Region.of(region)); builder.build() // This is not responding anything.

Dependeny: <dependency> <groupId>software.amazon.awssdk</groupId> <artifactId>s3</artifactId> <version>2.21.21</version> <exclusions> <exclusion> <groupId>commons-logging</groupId> <artifactId>commons-logging</artifactId> </exclusion> </exclusions> </dependency>

Vinoth
asked 5 months ago150 views
1 Answer
0

I resolved it. Due to dependency conflicts the issue was. Thanks guys.

Vinoth
answered 5 months 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