Class: Aws::DynamoDB::Types::GlobalSecondaryIndexAutoScalingUpdate

Inherits:
Struct
  • Object
show all
Includes:
Structure
Defined in:
lib/aws-sdk-dynamodb/types.rb

Overview

Represents the auto scaling 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.

Returns:

  • (String)


4120
4121
4122
4123
4124
4125
# File 'lib/aws-sdk-dynamodb/types.rb', line 4120

class GlobalSecondaryIndexAutoScalingUpdate < Struct.new(
  :index_name,
  :provisioned_write_capacity_auto_scaling_update)
  SENSITIVE = []
  include Aws::Structure
end

#provisioned_write_capacity_auto_scaling_updateTypes::AutoScalingSettingsUpdate

Represents the auto scaling settings to be modified for a global table or global secondary index.



4120
4121
4122
4123
4124
4125
# File 'lib/aws-sdk-dynamodb/types.rb', line 4120

class GlobalSecondaryIndexAutoScalingUpdate < Struct.new(
  :index_name,
  :provisioned_write_capacity_auto_scaling_update)
  SENSITIVE = []
  include Aws::Structure
end