Class: Aws::Athena::Types::GetTableMetadataInput
- Inherits:
-
Struct
- Object
- Struct
- Aws::Athena::Types::GetTableMetadataInput
- Defined in:
- gems/aws-sdk-athena/lib/aws-sdk-athena/types.rb
Overview
Note:
When making an API call, you may pass GetTableMetadataInput data as a hash:
{
catalog_name: "CatalogNameString", # required
database_name: "NameString", # required
table_name: "NameString", # required
}
Constant Summary collapse
- SENSITIVE =
[]
Instance Attribute Summary collapse
-
#catalog_name ⇒ String
The name of the data catalog that contains the database and table metadata to return.
-
#database_name ⇒ String
The name of the database that contains the table metadata to return.
-
#table_name ⇒ String
The name of the table for which metadata is returned.
Instance Attribute Details
#catalog_name ⇒ String
The name of the data catalog that contains the database and table metadata to return.
1190 1191 1192 1193 1194 1195 1196 |
# File 'gems/aws-sdk-athena/lib/aws-sdk-athena/types.rb', line 1190 class GetTableMetadataInput < Struct.new( :catalog_name, :database_name, :table_name) SENSITIVE = [] include Aws::Structure end |
#database_name ⇒ String
The name of the database that contains the table metadata to return.
1190 1191 1192 1193 1194 1195 1196 |
# File 'gems/aws-sdk-athena/lib/aws-sdk-athena/types.rb', line 1190 class GetTableMetadataInput < Struct.new( :catalog_name, :database_name, :table_name) SENSITIVE = [] include Aws::Structure end |
#table_name ⇒ String
The name of the table for which metadata is returned.
1190 1191 1192 1193 1194 1195 1196 |
# File 'gems/aws-sdk-athena/lib/aws-sdk-athena/types.rb', line 1190 class GetTableMetadataInput < Struct.new( :catalog_name, :database_name, :table_name) SENSITIVE = [] include Aws::Structure end |