Class ListTablesRequest
- Namespace
- Amazon.DynamoDBv2.Model
- Assembly
- AWSSDK.DynamoDBv2.dll
Container for the parameters to the ListTables operation. 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.
public class ListTablesRequest : AmazonDynamoDBRequest
- Inheritance
-
ListTablesRequest
Constructors
ListTablesRequest()
Empty constructor used to set properties independently even when a simple constructor is available
public ListTablesRequest()
ListTablesRequest(string)
Instantiates ListTablesRequest with the parameterized properties
public ListTablesRequest(string exclusiveStartTableName)
Parameters
exclusiveStartTableName
stringThe first table name that this operation will evaluate. Use the value that was returned for
in a previous operation, so that you can obtain the next page of results.LastEvaluatedTableName
ListTablesRequest(string, int)
Instantiates ListTablesRequest with the parameterized properties
public ListTablesRequest(string exclusiveStartTableName, int limit)
Parameters
exclusiveStartTableName
stringThe first table name that this operation will evaluate. Use the value that was returned for
in a previous operation, so that you can obtain the next page of results.LastEvaluatedTableName
limit
intA maximum number of table names to return. If this parameter is not specified, the limit is 100.
Properties
ExclusiveStartTableName
Gets and sets the property ExclusiveStartTableName.
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.
public string ExclusiveStartTableName { get; set; }
Property Value
Limit
Gets and sets the property Limit.
A maximum number of table names to return. If this parameter is not specified, the limit is 100.
public int Limit { get; set; }