Method: Aws::DynamoDB::Types::TableCreationParameters#provisioned_throughput
- Defined in:
- lib/aws-sdk-dynamodb/types.rb
#provisioned_throughput ⇒ Types::ProvisionedThroughput
Represents the provisioned throughput settings for the specified global secondary index. You must use ‘ProvisionedThroughput` or `OnDemandThroughput` based on your table’s capacity mode.
For current minimum and maximum provisioned throughput values, see
- Service, Account, and Table Quotas][1
-
in the *Amazon DynamoDB
Developer Guide*.
[1]: docs.aws.amazon.com/amazondynamodb/latest/developerguide/Limits.html
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 |