Method: Aws::DynamoDB::Types::TableCreationParameters#global_secondary_indexes
- Defined in:
- lib/aws-sdk-dynamodb/types.rb
#global_secondary_indexes ⇒ Array<Types::GlobalSecondaryIndex>
The Global Secondary Indexes (GSI) of the table to be created as part of the import operation.
8848 8849 8850 8851 8852 8853 8854 8855 8856 8857 8858 8859 |
# File 'lib/aws-sdk-dynamodb/types.rb', line 8848 class TableCreationParameters < Struct.new( :table_name, :attribute_definitions, :key_schema, :billing_mode, :provisioned_throughput, :on_demand_throughput, :sse_specification, :global_secondary_indexes) SENSITIVE = [] include Aws::Structure end |