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
1282 1283 1284 1285 1286 1287 1288 |
# File 'lib/aws-sdk-keyspaces/types.rb', line 1282 class ReplicaSpecificationSummary < Struct.new( :region, :status, :capacity_specification) SENSITIVE = [] include Aws::Structure end |
#region ⇒ String
The Amazon Web Services Region.
1282 1283 1284 1285 1286 1287 1288 |
# File 'lib/aws-sdk-keyspaces/types.rb', line 1282 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.
1282 1283 1284 1285 1286 1287 1288 |
# File 'lib/aws-sdk-keyspaces/types.rb', line 1282 class ReplicaSpecificationSummary < Struct.new( :region, :status, :capacity_specification) SENSITIVE = [] include Aws::Structure end |