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",
}

Instance Attribute Summary collapse

Instance Attribute Details

#exclusive_start_global_table_nameString

The first global table name that this operation will evaluate.

Returns:

  • (String)


3956
3957
3958
3959
3960
3961
# File 'lib/aws-sdk-dynamodb/types.rb', line 3956

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

#limitInteger

The maximum number of table names to return.

Returns:

  • (Integer)


3956
3957
3958
3959
3960
3961
# File 'lib/aws-sdk-dynamodb/types.rb', line 3956

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

#region_nameString

Lists the global tables in a specific region.

Returns:

  • (String)


3956
3957
3958
3959
3960
3961
# File 'lib/aws-sdk-dynamodb/types.rb', line 3956

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