Class: Aws::Athena::Types::Database
- Inherits:
- 
      Struct
      
        - Object
- Struct
- Aws::Athena::Types::Database
 
- Defined in:
- gems/aws-sdk-athena/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.
| 1197 1198 1199 1200 1201 1202 1203 | # File 'gems/aws-sdk-athena/lib/aws-sdk-athena/types.rb', line 1197 class Database < Struct.new( :name, :description, :parameters) SENSITIVE = [] include Aws::Structure end |