SDK clients connect to an AWS service in a specific AWS Region that you specify when you create the client. This configuration allows your application to interact with AWS resources in that geographical area. When you create a service client without explicitly setting a Region, the SDK uses the default Region from your external configuration.
Explicitly configure an AWS RegionTo explicitly set a Region, we recommend that you use the constants defined in the Region class. This is an enumeration of all publicly available regions.
To create a client with an enumerated Region from the class, use the client builder's region
method.
Ec2Client ec2 = Ec2Client.builder()
.region(Region.US_WEST_2)
.build();
If the Region you want to use isnât one of the enumerations in the Region
class, you can create a new Region by using the static of
method. This method allows you access to new Regions without upgrading the SDK.
Region newRegion = Region.of("us-east-42");
Ec2Client ec2 = Ec2Client.builder()
.region(newRegion)
.build();
Note
After you build a client with the builder, itâs immutable and the AWS Region cannot be changed. If you need to work with multiple AWS Regions for the same service, you should create multiple clientsââone per Region.
Let the SDK automatically determine the default AWS Region from the environmentWhen your code runs on Amazon EC2 or AWS Lambda, you might want to configure clients to use the same AWS Region that your code is running on. This decouples your code from the environment itâs running in and makes it easier to deploy your application to multiple AWS Regions for lower latency or redundancy.
To use the default AWS Region provider chain to determine the Region from the environment, use the client builderâs create
method.
Ec2Client ec2 = Ec2Client.create();
You can also configure the client in other ways, but not set the Region. The SDK picks up the AWS Region by using the default region provider chain:
Ec2Client ec2Client = Ec2Client.builder()
.credentialsProvider(ProfileCredentialsProvider.builder()
.profileName("my-profile")
.build())
.build();
If you donât explicitly set an AWS Region by using the region
method, the SDK consults the default region provider chain to determine the Region to use.
The SDK takes the following steps to look for an AWS Region:
Any explicit Region set by using the region
method on the builder itself takes precedence over anything else.
The SDK looks for the JVM system property aws.region
and uses its value if found.
The AWS_REGION
environment variable is checked. If itâs set, that Region is used to configure the client.
The Lambda container sets this environment variable.
The SDK checks the active profile in the AWS shared config and credentials files. If the region
property is present, the SDK uses it.
The default
profile is the active profile unless overridden by AWS_PROFILE
environment variable or aws.profile
JVM system property. If the SDK finds the region
property in both files for the same profile (including the default
profile), the SDK uses the value in the shared credentials file.
The SDK attempts to use the Amazon EC2 instance metadata service (IMDS) to determine the Region of the currently running Amazon EC2 instance.
For greater security, you should disable the SDK from attempting to use version 1 of IMDS. You use the same setting to disable version 1 that are described in the Securely acquire IAM role credentials section.
If the SDK still hasnât found a Region by this point, client creation fails with an exception.
When developing AWS applications, a common approach is to use the shared configuration file to set the Region for local development, and rely on the default region provider chain to determine the Region when the application runs on AWS infrastructure. This greatly simplifies client creation and keeps your application portable.
Check to see if a service is available in a RegionTo see if a particular AWS service is available in a Region, use the static serviceMetadata
method on a service client:
DynamoDbClient.serviceMetadata().regions().forEach(System.out::println);
The previous snippet prints out a long list of AWS Region codes that have the DynamoDB service:
af-south-1
ap-east-1
ap-northeast-1
ap-northeast-2
ap-northeast-3
ap-south-1
ap-south-2
ap-southeast-1
...
You can use a code to look up the Region class enumeration for the Region you need your service client to use.
For example, if you want to work with DynamoDB in the Region with the code ap-northeast-2
, create your DynamoDB client with at least the following configuration:
DynamoDbClient ddb = DynamoDbClient.builder()
.region(Region.AP_NORTHEAST_2)
.build();
Choose a specific endpoint
In certain situationsâsuch as to test preview features of a service before the features graduate to general availabilityâyou may need to specify a specific endpoint in a Region. In these situations, service clients can be configured by calling the endpointOverride
method.
For example, to configure an Amazon EC2 client to use the Europe (Ireland) Region with a specific endpoint, use the following code.
Ec2Client ec2 = Ec2Client.builder()
.region(Region.EU_WEST_1)
.endpointOverride(URI.create("https://ec2.eu-west-1.amazonaws.com"))
.build();
See Regions and Endpoints for the current list of regions and their corresponding endpoints for all AWS services.
RetroSearch is an open source project built by @garambo | Open a GitHub Issue
Search and Browse the WWW like it's 1997 | Search results from DuckDuckGo
HTML:
3.2
| Encoding:
UTF-8
| Version:
0.7.4