Method: Aws::DynamoDB::Types::TableCreationParameters#on_demand_throughput

Defined in:
lib/aws-sdk-dynamodb/types.rb

#on_demand_throughputTypes::OnDemandThroughput

Sets the maximum number of read and write units for the specified on-demand table. If you use this parameter, you must specify ‘MaxReadRequestUnits`, `MaxWriteRequestUnits`, or both.



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