Package com.amazonaws.services.dynamodb.model

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


    // Update Table
    Table table = this.tables.get(request.getTableName());
    table.setProvisionedThroughput(request.getProvisionedThroughput());

    return new UpdateTableResult().withTableDescription(table.getTableDescription());
  }
View Full Code Here


    return new UpdateTableResult().withTableDescription(table.getTableDescription());
  }

  public com.amazonaws.services.dynamodbv2.model.UpdateTableResult updateTableV2(com.amazonaws.services.dynamodbv2.model.UpdateTableRequest v2Request) throws InternalServerErrorException, ResourceNotFoundException {
        UpdateTableRequest request = AlternatorDBApiVersion2Mapper.MapV2UpdateTableRequestToV1(v2Request);
        UpdateTableResult result = updateTable(request);
        return AlternatorDBApiVersion2Mapper.MapV1UpdateTableResultToV2(result);
  }
View Full Code Here

TOP

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

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.