Class: Aws::Keyspaces::Types::ReplicaSpecification

Inherits:
Struct
  • Object
show all
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

Instance Attribute Details

#read_capacity_auto_scalingTypes::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 'gems/aws-sdk-keyspaces/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_unitsInteger

The provisioned read capacity units for the multi-Region table in the specified Amazon Web Services Region.

Returns:

  • (Integer)


1236
1237
1238
1239
1240
1241
1242
# File 'gems/aws-sdk-keyspaces/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

#regionString

The Amazon Web Services Region.

Returns:

  • (String)


1236
1237
1238
1239
1240
1241
1242
# File 'gems/aws-sdk-keyspaces/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