Class: Aws::TimestreamWrite::Types::DeleteTableRequest

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

Overview

Note:

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

{
  database_name: "ResourceName", # required
  table_name: "ResourceName", # required
}

Constant Summary collapse

SENSITIVE =
[]

Instance Attribute Summary collapse

Instance Attribute Details

#database_nameString

The name of the database where the Timestream database is to be deleted.

Returns:

  • (String)


251
252
253
254
255
256
# File 'lib/aws-sdk-timestreamwrite/types.rb', line 251

class DeleteTableRequest < Struct.new(
  :database_name,
  :table_name)
  SENSITIVE = []
  include Aws::Structure
end

#table_nameString

The name of the Timestream table to be deleted.

Returns:

  • (String)


251
252
253
254
255
256
# File 'lib/aws-sdk-timestreamwrite/types.rb', line 251

class DeleteTableRequest < Struct.new(
  :database_name,
  :table_name)
  SENSITIVE = []
  include Aws::Structure
end