Class: Aws::DynamoDB::Types::WarmThroughput
- Inherits:
-
Struct
- Object
- Struct
- Aws::DynamoDB::Types::WarmThroughput
- Defined in:
- gems/aws-sdk-dynamodb/lib/aws-sdk-dynamodb/types.rb
Overview
Provides visibility into the number of read and write operations your
table or secondary index can instantaneously support. The settings can
be modified using the UpdateTable
operation to meet the throughput
requirements of an upcoming peak event.
Constant Summary collapse
- SENSITIVE =
[]
Instance Attribute Summary collapse
-
#read_units_per_second ⇒ Integer
Represents the number of read operations your base table can instantaneously support.
-
#write_units_per_second ⇒ Integer
Represents the number of write operations your base table can instantaneously support.
Instance Attribute Details
#read_units_per_second ⇒ Integer
Represents the number of read operations your base table can instantaneously support.
10630 10631 10632 10633 10634 10635 |
# File 'gems/aws-sdk-dynamodb/lib/aws-sdk-dynamodb/types.rb', line 10630 class WarmThroughput < Struct.new( :read_units_per_second, :write_units_per_second) SENSITIVE = [] include Aws::Structure end |
#write_units_per_second ⇒ Integer
Represents the number of write operations your base table can instantaneously support.
10630 10631 10632 10633 10634 10635 |
# File 'gems/aws-sdk-dynamodb/lib/aws-sdk-dynamodb/types.rb', line 10630 class WarmThroughput < Struct.new( :read_units_per_second, :write_units_per_second) SENSITIVE = [] include Aws::Structure end |