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.
1022 1023 1024 1025 1026 1027 1028 |
# File 'lib/aws-sdk-athena/types.rb', line 1022 class Database < Struct.new( :name, :description, :parameters) SENSITIVE = [] include Aws::Structure end |