Class: Aws::DynamoDB::Types::DeleteGlobalSecondaryIndexAction

Inherits:
Struct
  • Object
show all
Includes:
Structure
Defined in:
lib/aws-sdk-dynamodb/types.rb

Overview

Note:

When making an API call, you may pass DeleteGlobalSecondaryIndexAction data as a hash:

{
  index_name: "IndexName", # required
}

Represents a global secondary index to be deleted from an existing table.

Instance Attribute Summary collapse

Instance Attribute Details

#index_nameString

The name of the global secondary index to be deleted.

Returns:

  • (String)


2057
2058
2059
2060
# File 'lib/aws-sdk-dynamodb/types.rb', line 2057

class DeleteGlobalSecondaryIndexAction < Struct.new(
  :index_name)
  include Aws::Structure
end