Class: Aws::DynamoDB::Types::ListTablesInput
- Inherits:
-
Struct
- Object
- Struct
- Aws::DynamoDB::Types::ListTablesInput
- Includes:
- Structure
- Defined in:
- lib/aws-sdk-dynamodb/types.rb
Overview
Represents the input of a ‘ListTables` operation.
Constant Summary collapse
- SENSITIVE =
[]
Instance Attribute Summary collapse
-
#exclusive_start_table_name ⇒ String
The first table name that this operation will evaluate.
-
#limit ⇒ Integer
A maximum number of table names to return.
Instance Attribute Details
#exclusive_start_table_name ⇒ 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.
5540 5541 5542 5543 5544 5545 |
# File 'lib/aws-sdk-dynamodb/types.rb', line 5540 class ListTablesInput < Struct.new( :exclusive_start_table_name, :limit) SENSITIVE = [] include Aws::Structure end |
#limit ⇒ Integer
A maximum number of table names to return. If this parameter is not specified, the limit is 100.
5540 5541 5542 5543 5544 5545 |
# File 'lib/aws-sdk-dynamodb/types.rb', line 5540 class ListTablesInput < Struct.new( :exclusive_start_table_name, :limit) SENSITIVE = [] include Aws::Structure end |