Listing tables using the AWS SDK for Java

Now, let's understand how to list all the DynamoDB tables using the AWS SDK for Java.

Getting ready

You can use the IDE of your choice to code these recipes.

How to do it…

In this recipe, we will learn how to list the tables that we created earlier using the AWS SDK for Java:

  1. Create an instance of the DynamoDB class and instantiate it with the AWS credential provider:
    DynamoDB dynamoDB = new DynamoDB(new AmazonDynamoDBClient(
        new ProfileCredentialsProvider()));
  2. Invoke the listTables method of the DynamoDB class to get a list of all the tables:
    TableCollection<ListTablesResult> tables = dynamoDB.listTables();
    Iterator<Table> iterator = tables.iterator();
  3. Now, you can iterate over the list to get the details of the ...

Get DynamoDB Cookbook now with the O’Reilly learning platform.

O’Reilly members experience books, live events, courses curated by job role, and more from O’Reilly and nearly 200 top publishers.