AWS SDK for .NET Documentation
ListTables Method (listTablesRequest)
AmazonAmazon.DynamoDBAmazonDynamoDBListTables(ListTablesRequest) Did this page help you?   Yes   No    Tell us about it...

Retrieves a paginated list of table names created by the AWS Account of the caller in the AWS Region (e.g. us-east-1 ).

Declaration Syntax
C#
ListTablesResponse ListTables(
	ListTablesRequest listTablesRequest
)
Parameters
listTablesRequest (ListTablesRequest)
Container for the necessary parameters to execute the ListTables service method on AmazonDynamoDB.
Return Value
The response from the ListTables service method, as returned by AmazonDynamoDB.
Examples

This example shows how to get a list of all tables.

CopyListTables sample
// Create a client
AmazonDynamoDBClient client = new AmazonDynamoDBClient();

string startTableName = null;
do
{
    // Configure ListTables request with the marker value
    ListTablesRequest request = new ListTablesRequest
    {
        ExclusiveStartTableName = startTableName,
    };

    // Issue call
    ListTablesResult result = client.ListTables(request).ListTablesResult;

    // List retrieved tables
    List<string> tables = result.TableNames;
    Console.WriteLine("Retrieved tables: {0}",
        string.Join(", ", tables.ToArray()));

    // Update marker value from the result
    startTableName = result.LastEvaluatedTableName;

} while (!string.IsNullOrEmpty(startTableName)); // Test marker value
Exceptions

Assembly: AWSSDK (Module: AWSSDK) Version: 1.5.60.0 (1.5.60.0)