Class: Aws::DynamoDB::Types::UpdateGlobalSecondaryIndexAction
- Inherits:
-
Struct
- Object
- Struct
- Aws::DynamoDB::Types::UpdateGlobalSecondaryIndexAction
- Defined in:
- gems/aws-sdk-dynamodb/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.
Constant Summary collapse
- SENSITIVE =
[]
Instance Attribute Summary collapse
-
#index_name ⇒ String
The name of the global secondary index to be updated.
-
#provisioned_throughput ⇒ Types::ProvisionedThroughput
Represents the provisioned throughput settings for the specified global secondary index.
Instance Attribute Details
#index_name ⇒ String
The name of the global secondary index to be updated.
10077 10078 10079 10080 10081 10082 |
# File 'gems/aws-sdk-dynamodb/lib/aws-sdk-dynamodb/types.rb', line 10077 class UpdateGlobalSecondaryIndexAction < Struct.new( :index_name, :provisioned_throughput) SENSITIVE = [] include Aws::Structure end |
#provisioned_throughput ⇒ Types::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.
10077 10078 10079 10080 10081 10082 |
# File 'gems/aws-sdk-dynamodb/lib/aws-sdk-dynamodb/types.rb', line 10077 class UpdateGlobalSecondaryIndexAction < Struct.new( :index_name, :provisioned_throughput) SENSITIVE = [] include Aws::Structure end |