I have gone through the question titled \"Setting the AWS region programmatically 1\" but it doesn\'t provide all the answers I need.
Q1: I\'m getting a SDKCli
SDKCli
You can try this as below
BasicAWSCredentials creds = new BasicAWSCredentials("your-accessKey", "your-secretKey"); AmazonSNS snsClient = AmazonSNSClientBuilder.standard() .withCredentials(new AWSStaticCredentialsProvider(creds)) .withRegion(Regions.US_EAST_1).build();