C# Class Amazon.DynamoDBv2.Model.ListTablesRequest

Container for the parameters to the ListTables operation.

Returns an array of all the tables associated with the current account and endpoint.

Inheritance: AmazonDynamoDBv2Request
Show file Open project: aws/aws-sdk-net Class Usage Examples

Public Methods

Method Description
ListTablesRequest ( ) : System

Empty constructor used to set properties independently even when a simple constructor is available

ListTablesRequest ( string exclusiveStartTableName ) : System

Instantiates ListTablesRequest with the parameterized properties

ListTablesRequest ( string exclusiveStartTableName, int limit ) : System

Instantiates ListTablesRequest with the parameterized properties

Private Methods

Method Description
IsSetExclusiveStartTableName ( ) : bool
IsSetLimit ( ) : bool

Method Details

ListTablesRequest() public method

Empty constructor used to set properties independently even when a simple constructor is available
public ListTablesRequest ( ) : System
return System

ListTablesRequest() public method

Instantiates ListTablesRequest with the parameterized properties
public ListTablesRequest ( string exclusiveStartTableName ) : System
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.
return System

ListTablesRequest() public method

Instantiates ListTablesRequest with the parameterized properties
public ListTablesRequest ( string exclusiveStartTableName, int limit ) : System
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.
return System