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)


2410
2411
2412
2413
# File 'lib/aws-sdk-dynamodb/types.rb', line 2410

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