Class: Aws::DynamoDB::Types::DeleteTableInput

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 DeleteTableInput data as a hash:

{
  table_name: "TableName", # required
}

Represents the input of a ‘DeleteTable` operation.

Instance Attribute Summary collapse

Instance Attribute Details

#table_nameString

The name of the table to delete.

Returns:

  • (String)


2404
2405
2406
2407
# File 'lib/aws-sdk-dynamodb/types.rb', line 2404

class DeleteTableInput < Struct.new(
  :table_name)
  include Aws::Structure
end