Amazon.DynamoDBv2.AmazonDynamoDBClient.ListTablesAsync C# (CSharp) Method

ListTablesAsync() public method

Returns an array of table names associated with the current account and endpoint. The output from ListTables is paginated, with each page returning a maximum of 100 table names.
/// An error occurred on the server side. ///
public ListTablesAsync ( System cancellationToken = default(CancellationToken) ) : Task
cancellationToken System /// A cancellation token that can be used by other objects or threads to receive notice of cancellation. ///
return Task
        public Task<ListTablesResponse> ListTablesAsync(System.Threading.CancellationToken cancellationToken = default(CancellationToken))
        {
            return ListTablesAsync(new ListTablesRequest(), cancellationToken);
        }

Same methods

AmazonDynamoDBClient::ListTablesAsync ( ListTablesRequest request, System cancellationToken = default(CancellationToken) ) : Task
AmazonDynamoDBClient::ListTablesAsync ( int limit, System cancellationToken = default(CancellationToken) ) : Task
AmazonDynamoDBClient::ListTablesAsync ( string exclusiveStartTableName, System cancellationToken = default(CancellationToken) ) : Task
AmazonDynamoDBClient::ListTablesAsync ( string exclusiveStartTableName, int limit, System cancellationToken = default(CancellationToken) ) : Task