Class: Aws::TimestreamWrite::Types::DescribeTableRequest
- Inherits:
-
Struct
- Object
- Struct
- Aws::TimestreamWrite::Types::DescribeTableRequest
- 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
-
#database_name ⇒ String
The name of the Timestream database.
-
#table_name ⇒ String
The name of the Timestream table.
Instance Attribute Details
#database_name ⇒ String
The name of the Timestream database.
326 327 328 329 330 331 |
# File 'lib/aws-sdk-timestreamwrite/types.rb', line 326 class DescribeTableRequest < Struct.new( :database_name, :table_name) SENSITIVE = [] include Aws::Structure end |
#table_name ⇒ String
The name of the Timestream table.
326 327 328 329 330 331 |
# File 'lib/aws-sdk-timestreamwrite/types.rb', line 326 class DescribeTableRequest < Struct.new( :database_name, :table_name) SENSITIVE = [] include Aws::Structure end |