Package com.amazonaws.services.dynamodb.model

Examples of com.amazonaws.services.dynamodb.model.DescribeTableRequest


  @Test
  public void describeTableWithoutTableName() {
    createTable();
    boolean wasError = false;
    try {
      DescribeTableResult res = getClient().describeTable(new DescribeTableRequest());
      wasError = res.getTable() == null;
    } catch (Exception e) {
      wasError = true;
    }
    Assert.assertTrue(wasError);
View Full Code Here

TOP

Related Classes of com.amazonaws.services.dynamodb.model.DescribeTableRequest

Copyright © 2018 www.massapicom. All rights reserved.
All source code are property of their respective owners. Java is a trademark of Sun Microsystems, Inc and owned by ORACLE Inc. Contact coftware#gmail.com.