Class: Aws::DynamoDB::Types::ProvisionedThroughput
- Inherits:
-
Struct
- Object
- Struct
- Aws::DynamoDB::Types::ProvisionedThroughput
- Defined in:
- gems/aws-sdk-dynamodb/lib/aws-sdk-dynamodb/types.rb
Overview
Represents the provisioned throughput settings for a specified table
or index. The settings can be modified using the UpdateTable
operation.
For current minimum and maximum provisioned throughput values, see Service, Account, and Table Quotas in the Amazon DynamoDB Developer Guide.
Constant Summary collapse
- SENSITIVE =
[]
Instance Attribute Summary collapse
-
#read_capacity_units ⇒ Integer
The maximum number of strongly consistent reads consumed per second before DynamoDB returns a
ThrottlingException
. -
#write_capacity_units ⇒ Integer
The maximum number of writes consumed per second before DynamoDB returns a
ThrottlingException
.
Instance Attribute Details
#read_capacity_units ⇒ Integer
The maximum number of strongly consistent reads consumed per second
before DynamoDB returns a ThrottlingException
. For more
information, see Specifying Read and Write Requirements in the
Amazon DynamoDB Developer Guide.
If read/write capacity mode is PAY_PER_REQUEST
the value is set to
0.
6002 6003 6004 6005 6006 6007 |
# File 'gems/aws-sdk-dynamodb/lib/aws-sdk-dynamodb/types.rb', line 6002 class ProvisionedThroughput < Struct.new( :read_capacity_units, :write_capacity_units) SENSITIVE = [] include Aws::Structure end |
#write_capacity_units ⇒ Integer
The maximum number of writes consumed per second before DynamoDB
returns a ThrottlingException
. For more information, see
Specifying Read and Write Requirements in the Amazon DynamoDB
Developer Guide.
If read/write capacity mode is PAY_PER_REQUEST
the value is set to
0.
6002 6003 6004 6005 6006 6007 |
# File 'gems/aws-sdk-dynamodb/lib/aws-sdk-dynamodb/types.rb', line 6002 class ProvisionedThroughput < Struct.new( :read_capacity_units, :write_capacity_units) SENSITIVE = [] include Aws::Structure end |