aws / aws-sdk-java-v2

The official AWS SDK for Java - Version 2
Apache License 2.0
2.16k stars 840 forks source link

Wrap region string with Region.of #5331

Closed zoewangg closed 3 months ago

zoewangg commented 3 months ago

Motivation and Context

Wrap region string with Region.of

SqsClient.builder()
         .region("us-west-2")
         .build();

to

SqsClient.builder()
         .region(Region.of("us-west-2"))
         .build();