Class: Aws::TimestreamWrite::Types::DescribeTableRequest

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 DescribeTableRequest 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 Timestream database.

Returns:

  • (String)


308
309
310
311
312
313
# File 'lib/aws-sdk-timestreamwrite/types.rb', line 308

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

#table_nameString

The name of the Timestream table.

Returns:

  • (String)


308
309
310
311
312
313
# File 'lib/aws-sdk-timestreamwrite/types.rb', line 308

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