Class: Aws::DynamoDB::Types::ProvisionedThroughputOverride
- Inherits:
-
Struct
- Object
- Struct
- Aws::DynamoDB::Types::ProvisionedThroughputOverride
- Defined in:
- gems/aws-sdk-dynamodb/lib/aws-sdk-dynamodb/types.rb
Overview
Replica-specific provisioned throughput settings. If not specified, uses the source table's provisioned throughput settings.
Constant Summary collapse
- SENSITIVE =
[]
Instance Attribute Summary collapse
-
#read_capacity_units ⇒ Integer
Replica-specific read capacity units.
Instance Attribute Details
#read_capacity_units ⇒ Integer
Replica-specific read capacity units. If not specified, uses the source table's read capacity settings.
6092 6093 6094 6095 6096 |
# File 'gems/aws-sdk-dynamodb/lib/aws-sdk-dynamodb/types.rb', line 6092 class ProvisionedThroughputOverride < Struct.new( :read_capacity_units) SENSITIVE = [] include Aws::Structure end |