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

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


9960
9961
9962
9963
9964
9965
9966
9967
# File 'gems/aws-sdk-dynamodb/lib/aws-sdk-dynamodb/types.rb', line 9960

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

#on_demand_throughputTypes::OnDemandThroughput

Updates the maximum number of read and write units for the specified global secondary index. If you use this parameter, you must specify MaxReadRequestUnits, MaxWriteRequestUnits, or both.



9960
9961
9962
9963
9964
9965
9966
9967
# File 'gems/aws-sdk-dynamodb/lib/aws-sdk-dynamodb/types.rb', line 9960

class UpdateGlobalSecondaryIndexAction < Struct.new(
  :index_name,
  :provisioned_throughput,
  :on_demand_throughput,
  :warm_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 in the Amazon DynamoDB Developer Guide.



9960
9961
9962
9963
9964
9965
9966
9967
# File 'gems/aws-sdk-dynamodb/lib/aws-sdk-dynamodb/types.rb', line 9960

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

#warm_throughputTypes::WarmThroughput

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



9960
9961
9962
9963
9964
9965
9966
9967
# File 'gems/aws-sdk-dynamodb/lib/aws-sdk-dynamodb/types.rb', line 9960

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