Class: Aws::DynamoDB::Types::GlobalSecondaryIndexUpdate
- Inherits:
-
Struct
- Object
- Struct
- Aws::DynamoDB::Types::GlobalSecondaryIndexUpdate
- Defined in:
- gems/aws-sdk-dynamodb/lib/aws-sdk-dynamodb/types.rb
Overview
Represents one of the following:
A new global secondary index to be added to an existing table.
New provisioned throughput parameters for an existing global secondary index.
An existing global secondary index to be removed from an existing table.
Constant Summary collapse
- SENSITIVE =
[]
Instance Attribute Summary collapse
-
#create ⇒ Types::CreateGlobalSecondaryIndexAction
The parameters required for creating a global secondary index on an existing table:.
-
#delete ⇒ Types::DeleteGlobalSecondaryIndexAction
The name of an existing global secondary index to be removed.
-
#update ⇒ Types::UpdateGlobalSecondaryIndexAction
The name of an existing global secondary index, along with new provisioned throughput settings to be applied to that index.
Instance Attribute Details
#create ⇒ Types::CreateGlobalSecondaryIndexAction
The parameters required for creating a global secondary index on an existing table:
IndexName
KeySchema
AttributeDefinitions
Projection
ProvisionedThroughput
4391 4392 4393 4394 4395 4396 4397 |
# File 'gems/aws-sdk-dynamodb/lib/aws-sdk-dynamodb/types.rb', line 4391 class GlobalSecondaryIndexUpdate < Struct.new( :update, :create, :delete) SENSITIVE = [] include Aws::Structure end |
#delete ⇒ Types::DeleteGlobalSecondaryIndexAction
The name of an existing global secondary index to be removed.
4391 4392 4393 4394 4395 4396 4397 |
# File 'gems/aws-sdk-dynamodb/lib/aws-sdk-dynamodb/types.rb', line 4391 class GlobalSecondaryIndexUpdate < Struct.new( :update, :create, :delete) SENSITIVE = [] include Aws::Structure end |
#update ⇒ Types::UpdateGlobalSecondaryIndexAction
The name of an existing global secondary index, along with new provisioned throughput settings to be applied to that index.
4391 4392 4393 4394 4395 4396 4397 |
# File 'gems/aws-sdk-dynamodb/lib/aws-sdk-dynamodb/types.rb', line 4391 class GlobalSecondaryIndexUpdate < Struct.new( :update, :create, :delete) SENSITIVE = [] include Aws::Structure end |