Class: Aws::Keyspaces::Types::ReplicaSpecification
- Inherits:
-
Struct
- Object
- Struct
- Aws::Keyspaces::Types::ReplicaSpecification
- Includes:
- Structure
- Defined in:
- 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.
1236 1237 1238 1239 1240 1241 1242 |
# File 'lib/aws-sdk-keyspaces/types.rb', line 1236 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.
1236 1237 1238 1239 1240 1241 1242 |
# File 'lib/aws-sdk-keyspaces/types.rb', line 1236 class ReplicaSpecification < Struct.new( :region, :read_capacity_units, :read_capacity_auto_scaling) SENSITIVE = [] include Aws::Structure end |
#region ⇒ String
The Amazon Web Services Region.
1236 1237 1238 1239 1240 1241 1242 |
# File 'lib/aws-sdk-keyspaces/types.rb', line 1236 class ReplicaSpecification < Struct.new( :region, :read_capacity_units, :read_capacity_auto_scaling) SENSITIVE = [] include Aws::Structure end |