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

Inherits:
Struct
  • Object
show all
Includes:
Structure
Defined in:
lib/aws-sdk-dynamodb/types.rb

Overview

Note:

When making an API call, you may pass ListTablesInput data as a hash:

{
  exclusive_start_table_name: "TableName",
  limit: 1,
}

Represents the input of a ‘ListTables` operation.

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)


3991
3992
3993
3994
3995
# File 'lib/aws-sdk-dynamodb/types.rb', line 3991

class ListTablesInput < Struct.new(
  :exclusive_start_table_name,
  :limit)
  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)


3991
3992
3993
3994
3995
# File 'lib/aws-sdk-dynamodb/types.rb', line 3991

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