Package com.jcabi.dynamo
Interface Region
- 
- All Known Implementing Classes:
 MkRegion,Region.Prefixed,Region.Simple,ReRegion
@Immutable public interface RegionAmazon DynamoDB region.It is recommended to use
Region.Simplein most cases.You can use
aws()method to get access to Amazon DynamoDB client directly.Since version 0.9 it is strongly recommended to wrap your region in
ReRegionbefore use, for example:Region region = new ReRegion(new Region.Simple(credentials));
After all operations with the region are finished, it can be optionally shutdown invoking
AmazonDynamoDB.shutdown(). Callers are not expected to call it, but can if they want to explicitly release any open resources and forcibly terminate all pending asynchronous service calls. Once a client has been shutdown, it should not be used to make any more requests.- Since:
 - 0.1
 
 
- 
- 
Nested Class Summary
Nested Classes Modifier and Type Interface Description static classRegion.PrefixedAll tables have a prefix in front of their names.static classRegion.SimpleSimple region, basic implementation. 
- 
Method Summary
All Methods Instance Methods Abstract Methods Modifier and Type Method Description com.amazonaws.services.dynamodbv2.AmazonDynamoDBaws()Get DynamoDB client.Tabletable(String name)Get one table. 
 -