You are viewing documentation for version 2 of the AWS SDK for Ruby. Version 3 documentation can be found here.

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

Inherits:
Struct
  • Object
show all
Defined in:
(unknown)

Overview

Note:

When passing UpdateGlobalSecondaryIndexAction as input to an Aws::Client method, you can use a vanilla 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.

Returned by:

Instance Attribute Summary collapse

Instance Attribute Details

#index_nameString

The name of the global secondary index to be updated.

Returns:

  • (String)

    The name of the global secondary index to be updated.

#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 in the Amazon DynamoDB Developer Guide.

Returns: