Class: Aws::Keyspaces::Types::ReplicaSpecificationSummary
- Inherits:
-
Struct
- Object
- Struct
- Aws::Keyspaces::Types::ReplicaSpecificationSummary
- Includes:
- Structure
- Defined in:
- lib/aws-sdk-keyspaces/types.rb
Overview
The Region-specific settings of a multi-Region table in the specified Amazon Web Services Region.
If the multi-Region table is using provisioned capacity and has optional auto scaling policies configured, note that the Region specific summary returns both read and write capacity settings. But only Region specific read capacity settings can be configured for a multi-Region table. In a multi-Region table, your write capacity units will be synced across all Amazon Web Services Regions to ensure that there is enough capacity to replicate write events across Regions.
Constant Summary collapse
- SENSITIVE =
[]
Instance Attribute Summary collapse
-
#capacity_specification ⇒ Types::CapacitySpecificationSummary
The read/write throughput capacity mode for a table.
-
#region ⇒ String
The Amazon Web Services Region.
-
#status ⇒ String
The status of the multi-Region table in the specified Amazon Web Services Region.
Instance Attribute Details
#capacity_specification ⇒ Types::CapacitySpecificationSummary
The read/write throughput capacity mode for a table. The options are:
-
‘throughputMode:PAY_PER_REQUEST` and
-
‘throughputMode:PROVISIONED`.
For more information, see [Read/write capacity modes] in the *Amazon Keyspaces Developer Guide*.
[1]: docs.aws.amazon.com/keyspaces/latest/devguide/ReadWriteCapacityMode.html
1517 1518 1519 1520 1521 1522 1523 |
# File 'lib/aws-sdk-keyspaces/types.rb', line 1517 class ReplicaSpecificationSummary < Struct.new( :region, :status, :capacity_specification) SENSITIVE = [] include Aws::Structure end |
#region ⇒ String
The Amazon Web Services Region.
1517 1518 1519 1520 1521 1522 1523 |
# File 'lib/aws-sdk-keyspaces/types.rb', line 1517 class ReplicaSpecificationSummary < Struct.new( :region, :status, :capacity_specification) SENSITIVE = [] include Aws::Structure end |
#status ⇒ String
The status of the multi-Region table in the specified Amazon Web Services Region.
1517 1518 1519 1520 1521 1522 1523 |
# File 'lib/aws-sdk-keyspaces/types.rb', line 1517 class ReplicaSpecificationSummary < Struct.new( :region, :status, :capacity_specification) SENSITIVE = [] include Aws::Structure end |