Class: Aws::Athena::Types::Database
- Inherits:
-
Struct
- Object
- Struct
- Aws::Athena::Types::Database
- Includes:
- Structure
- Defined in:
- lib/aws-sdk-athena/types.rb
Overview
Contains metadata information for a database in a data catalog.
Constant Summary collapse
- SENSITIVE =
[]
Instance Attribute Summary collapse
-
#description ⇒ String
An optional description of the database.
-
#name ⇒ String
The name of the database.
-
#parameters ⇒ Hash<String,String>
A set of custom key/value pairs.
Instance Attribute Details
#description ⇒ String
An optional description of the database.
1177 1178 1179 1180 1181 1182 1183 |
# File 'lib/aws-sdk-athena/types.rb', line 1177 class Database < Struct.new( :name, :description, :parameters) SENSITIVE = [] include Aws::Structure end |