Class: Aws::DynamoDB::Types::ListTablesInput

Inherits:
Struct
  • Object
show all
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

Instance Attribute Details

#exclusive_start_table_nameString

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.

Returns:

  • (String)


5447
5448
5449
5450
5451
5452
# File 'gems/aws-sdk-dynamodb/lib/aws-sdk-dynamodb/types.rb', line 5447

class ListTablesInput < Struct.new(
  :exclusive_start_table_name,
  :limit)
  SENSITIVE = []
  include Aws::Structure
end

#limitInteger

A maximum number of table names to return. If this parameter is not specified, the limit is 100.

Returns:

  • (Integer)


5447
5448
5449
5450
5451
5452
# File 'gems/aws-sdk-dynamodb/lib/aws-sdk-dynamodb/types.rb', line 5447

class ListTablesInput < Struct.new(
  :exclusive_start_table_name,
  :limit)
  SENSITIVE = []
  include Aws::Structure
end