// Set up the DynamoDB endpoint to use service in the AWS east region.
// Use http endpoint to skip setting up https client certificate.
jsoda.setDbEndpoint(DbType.DynamoDB, dynUrl);
System.out.println("SimpleDB tables (domains):");
for (String dbname : jsoda.listNativeTables(DbType.SimpleDB)) {
System.out.println(dbname);
}
System.out.println("DynamoDB tables:");
for (String dbname : jsoda.listNativeTables(DbType.DynamoDB)) {