Class: Aws::DynamoDB::Types::ListTablesInput
- Inherits:
-
Struct
- Object
- Struct
- Aws::DynamoDB::Types::ListTablesInput
- Defined in:
- gems/aws-sdk-dynamodb/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.
5495 5496 5497 5498 5499 5500 |
# File 'gems/aws-sdk-dynamodb/lib/aws-sdk-dynamodb/types.rb', line 5495 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.
5495 5496 5497 5498 5499 5500 |
# File 'gems/aws-sdk-dynamodb/lib/aws-sdk-dynamodb/types.rb', line 5495 class ListTablesInput < Struct.new( :exclusive_start_table_name, :limit) SENSITIVE = [] include Aws::Structure end |