Class: Aws::DynamoDB::Types::UpdateGlobalSecondaryIndexAction

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

Overview

Represents the new provisioned throughput settings to be applied to a global secondary index.

Constant Summary collapse

SENSITIVE =
[]

Instance Attribute Summary collapse

Instance Attribute Details

#index_nameString

The name of the global secondary index to be updated.

Returns:

  • (String)


9298
9299
9300
9301
9302
9303
# File 'lib/aws-sdk-dynamodb/types.rb', line 9298

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

#provisioned_throughputTypes::ProvisionedThroughput

Represents the provisioned throughput settings for the specified global secondary index.

For current minimum and maximum provisioned throughput values, see

Service, Account, and Table Quotas][1

in the *Amazon DynamoDB

Developer Guide*.

[1]: docs.aws.amazon.com/amazondynamodb/latest/developerguide/Limits.html



9298
9299
9300
9301
9302
9303
# File 'lib/aws-sdk-dynamodb/types.rb', line 9298

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