Class: Aws::DynamoDB::Types::ListGlobalTablesInput

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 ListGlobalTablesInput data as a hash:

{
  exclusive_start_global_table_name: "TableName",
  limit: 1,
  region_name: "RegionName",
}

Constant Summary collapse

SENSITIVE =
[]

Instance Attribute Summary collapse

Instance Attribute Details

#exclusive_start_global_table_nameString

The first global table name that this operation will evaluate.

Returns:

  • (String)


5409
5410
5411
5412
5413
5414
5415
# File 'lib/aws-sdk-dynamodb/types.rb', line 5409

class ListGlobalTablesInput < Struct.new(
  :exclusive_start_global_table_name,
  :limit,
  :region_name)
  SENSITIVE = []
  include Aws::Structure
end

#limitInteger

The maximum number of table names to return, if the parameter is not specified DynamoDB defaults to 100.

If the number of global tables DynamoDB finds reaches this limit, it stops the operation and returns the table names collected up to that point, with a table name in the ‘LastEvaluatedGlobalTableName` to apply in a subsequent operation to the `ExclusiveStartGlobalTableName` parameter.

Returns:

  • (Integer)


5409
5410
5411
5412
5413
5414
5415
# File 'lib/aws-sdk-dynamodb/types.rb', line 5409

class ListGlobalTablesInput < Struct.new(
  :exclusive_start_global_table_name,
  :limit,
  :region_name)
  SENSITIVE = []
  include Aws::Structure
end

#region_nameString

Lists the global tables in a specific Region.

Returns:

  • (String)


5409
5410
5411
5412
5413
5414
5415
# File 'lib/aws-sdk-dynamodb/types.rb', line 5409

class ListGlobalTablesInput < Struct.new(
  :exclusive_start_global_table_name,
  :limit,
  :region_name)
  SENSITIVE = []
  include Aws::Structure
end