Class: Aws::Keyspaces::Types::ReplicaSpecification
- Inherits:
-
Struct
- Object
- Struct
- Aws::Keyspaces::Types::ReplicaSpecification
- Defined in:
- gems/aws-sdk-keyspaces/lib/aws-sdk-keyspaces/types.rb
Overview
The Amazon Web Services Region specific settings of a multi-Region table.
For a multi-Region table, you can configure the table's read capacity differently per Amazon Web Services Region. You can do this by configuring the following parameters.
region
: The Region where these settings are applied. (Required)readCapacityUnits
: The provisioned read capacity units. (Optional)readCapacityAutoScaling
: The read capacity auto scaling settings for the table. (Optional)
Constant Summary collapse
- SENSITIVE =
[]
Instance Attribute Summary collapse
-
#read_capacity_auto_scaling ⇒ Types::AutoScalingSettings
The read capacity auto scaling settings for the multi-Region table in the specified Amazon Web Services Region.
-
#read_capacity_units ⇒ Integer
The provisioned read capacity units for the multi-Region table in the specified Amazon Web Services Region.
-
#region ⇒ String
The Amazon Web Services Region.
Instance Attribute Details
#read_capacity_auto_scaling ⇒ Types::AutoScalingSettings
The read capacity auto scaling settings for the multi-Region table in the specified Amazon Web Services Region.
1477 1478 1479 1480 1481 1482 1483 |
# File 'gems/aws-sdk-keyspaces/lib/aws-sdk-keyspaces/types.rb', line 1477 class ReplicaSpecification < Struct.new( :region, :read_capacity_units, :read_capacity_auto_scaling) SENSITIVE = [] include Aws::Structure end |
#read_capacity_units ⇒ Integer
The provisioned read capacity units for the multi-Region table in the specified Amazon Web Services Region.
1477 1478 1479 1480 1481 1482 1483 |
# File 'gems/aws-sdk-keyspaces/lib/aws-sdk-keyspaces/types.rb', line 1477 class ReplicaSpecification < Struct.new( :region, :read_capacity_units, :read_capacity_auto_scaling) SENSITIVE = [] include Aws::Structure end |
#region ⇒ String
The Amazon Web Services Region.
1477 1478 1479 1480 1481 1482 1483 |
# File 'gems/aws-sdk-keyspaces/lib/aws-sdk-keyspaces/types.rb', line 1477 class ReplicaSpecification < Struct.new( :region, :read_capacity_units, :read_capacity_auto_scaling) SENSITIVE = [] include Aws::Structure end |