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

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

Overview

Note:

When making an API call, you may pass UpdateGlobalSecondaryIndexAction data as a hash:

{
  index_name: "IndexName", # required
  provisioned_throughput: { # required
    read_capacity_units: 1, # required
    write_capacity_units: 1, # required
  },
}

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

Instance Attribute Summary collapse

Instance Attribute Details

#index_nameString

The name of the global secondary index to be updated.

Returns:

  • (String)


7395
7396
7397
7398
7399
# File 'lib/aws-sdk-dynamodb/types.rb', line 7395

class UpdateGlobalSecondaryIndexAction < Struct.new(
  :index_name,
  :provisioned_throughput)
  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

Limits][1

in the *Amazon DynamoDB Developer Guide*.

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



7395
7396
7397
7398
7399
# File 'lib/aws-sdk-dynamodb/types.rb', line 7395

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