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 ( string exclusiveStartTableName, int limit, System cancellationToken = default(CancellationToken) ) : Task
exclusiveStartTableName string The first table name that this operation will evaluate. Use the value that was returned for LastEvaluatedTableName in a previous operation, so that you can obtain the next page of results.
limit int A maximum number of table names to return. If this parameter is not specified, the limit is 100.
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(string exclusiveStartTableName, int limit, System.Threading.CancellationToken cancellationToken = default(CancellationToken))
        {
            var request = new ListTablesRequest();
            request.ExclusiveStartTableName = exclusiveStartTableName;
            request.Limit = limit;
            return ListTablesAsync(request, cancellationToken);
        }

Same methods

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