Find centralized, trusted content and collaborate around the technologies you use most.
Teams
Q&A for work
Connect and share knowledge within a single location that is structured and easy to search.
在使用适用于 Java 的 AWS 开发工具包创建 DynamoDB 表时,我无法弄清楚如何指定可用区。它默认在美国东部地区创建一个表。
感谢您的帮助,谢谢。
在 AWS SDK for Java 1.3.8 中,它仍未实现。 相信会在下一次 SDK 更新中实现。
同时作为一种解决方法,您可以在使用该功能构建AmazonDynamoDBClient对象后手动设置它setEndpoint。
AmazonDynamoDBClient
setEndpoint
以欧盟为例:
AmazonDynamoDBClient dbClient = new AmazonDynamoDBClient(creds); dbClient.setEndpoint("dynamodb.eu-west-1.amazonaws.com/");