Class: Aws::DynamoDB::Types::GlobalTableGlobalSecondaryIndexSettingsUpdate

Inherits:
Struct
  • Object
show all
Defined in:
gems/aws-sdk-dynamodb/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

Instance Attribute Details

#index_nameString

The name of the global secondary index. The name must be unique among all other indexes on this table.

Returns:

  • (String)


4429
4430
4431
4432
4433
4434
4435
# File 'gems/aws-sdk-dynamodb/lib/aws-sdk-dynamodb/types.rb', line 4429

class GlobalTableGlobalSecondaryIndexSettingsUpdate < Struct.new(
  :index_name,
  :provisioned_write_capacity_units,
  :provisioned_write_capacity_auto_scaling_settings_update)
  SENSITIVE = []
  include Aws::Structure
end

#provisioned_write_capacity_auto_scaling_settings_updateTypes::AutoScalingSettingsUpdate

Auto scaling settings for managing a global secondary index's write capacity units.



4429
4430
4431
4432
4433
4434
4435
# File 'gems/aws-sdk-dynamodb/lib/aws-sdk-dynamodb/types.rb', line 4429

class GlobalTableGlobalSecondaryIndexSettingsUpdate < Struct.new(
  :index_name,
  :provisioned_write_capacity_units,
  :provisioned_write_capacity_auto_scaling_settings_update)
  SENSITIVE = []
  include Aws::Structure
end

#provisioned_write_capacity_unitsInteger

The maximum number of writes consumed per second before DynamoDB returns a ThrottlingException.

Returns:

  • (Integer)


4429
4430
4431
4432
4433
4434
4435
# File 'gems/aws-sdk-dynamodb/lib/aws-sdk-dynamodb/types.rb', line 4429

class GlobalTableGlobalSecondaryIndexSettingsUpdate < Struct.new(
  :index_name,
  :provisioned_write_capacity_units,
  :provisioned_write_capacity_auto_scaling_settings_update)
  SENSITIVE = []
  include Aws::Structure
end