Class: Aws::DynamoDB::Types::DeleteGlobalSecondaryIndexAction
- Inherits:
-
Struct
- Object
- Struct
- Aws::DynamoDB::Types::DeleteGlobalSecondaryIndexAction
- Defined in:
- gems/aws-sdk-dynamodb/lib/aws-sdk-dynamodb/types.rb
Overview
Represents a global secondary index to be deleted from an existing table.
Constant Summary collapse
- SENSITIVE =
[]
Instance Attribute Summary collapse
-
#index_name ⇒ String
The name of the global secondary index to be deleted.
Instance Attribute Details
#index_name ⇒ String
The name of the global secondary index to be deleted.
2233 2234 2235 2236 2237 |
# File 'gems/aws-sdk-dynamodb/lib/aws-sdk-dynamodb/types.rb', line 2233 class DeleteGlobalSecondaryIndexAction < Struct.new( :index_name) SENSITIVE = [] include Aws::Structure end |