Class: Aws::DynamoDB::Types::ReplicaGlobalSecondaryIndexSettingsUpdate
- Inherits:
-
Struct
- Object
- Struct
- Aws::DynamoDB::Types::ReplicaGlobalSecondaryIndexSettingsUpdate
- Includes:
- Structure
- Defined in:
- lib/aws-sdk-dynamodb/types.rb
Overview
Represents the settings of a global secondary index for a global table that will be modified.
Constant Summary collapse
- SENSITIVE =
[]
Instance Attribute Summary collapse
-
#index_name ⇒ String
The name of the global secondary index.
-
#provisioned_read_capacity_auto_scaling_settings_update ⇒ Types::AutoScalingSettingsUpdate
Auto scaling settings for managing a global secondary index replica’s read capacity units.
-
#provisioned_read_capacity_units ⇒ Integer
The maximum number of strongly consistent reads consumed per second before DynamoDB returns a ‘ThrottlingException`.
Instance Attribute Details
#index_name ⇒ String
The name of the global secondary index. The name must be unique among all other indexes on this table.
7424 7425 7426 7427 7428 7429 7430 |
# File 'lib/aws-sdk-dynamodb/types.rb', line 7424 class ReplicaGlobalSecondaryIndexSettingsUpdate < Struct.new( :index_name, :provisioned_read_capacity_units, :provisioned_read_capacity_auto_scaling_settings_update) SENSITIVE = [] include Aws::Structure end |
#provisioned_read_capacity_auto_scaling_settings_update ⇒ Types::AutoScalingSettingsUpdate
Auto scaling settings for managing a global secondary index replica’s read capacity units.
7424 7425 7426 7427 7428 7429 7430 |
# File 'lib/aws-sdk-dynamodb/types.rb', line 7424 class ReplicaGlobalSecondaryIndexSettingsUpdate < Struct.new( :index_name, :provisioned_read_capacity_units, :provisioned_read_capacity_auto_scaling_settings_update) SENSITIVE = [] include Aws::Structure end |
#provisioned_read_capacity_units ⇒ Integer
The maximum number of strongly consistent reads consumed per second before DynamoDB returns a ‘ThrottlingException`.
7424 7425 7426 7427 7428 7429 7430 |
# File 'lib/aws-sdk-dynamodb/types.rb', line 7424 class ReplicaGlobalSecondaryIndexSettingsUpdate < Struct.new( :index_name, :provisioned_read_capacity_units, :provisioned_read_capacity_auto_scaling_settings_update) SENSITIVE = [] include Aws::Structure end |