Class: Aws::Athena::Types::Database

Inherits:
Struct
  • Object
show all
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

Instance Attribute Details

#descriptionString

An optional description of the database.

Returns:

  • (String)


1020
1021
1022
1023
1024
1025
1026
# File 'gems/aws-sdk-athena/lib/aws-sdk-athena/types.rb', line 1020

class Database < Struct.new(
  :name,
  :description,
  :parameters)
  SENSITIVE = []
  include Aws::Structure
end

#nameString

The name of the database.

Returns:

  • (String)


1020
1021
1022
1023
1024
1025
1026
# File 'gems/aws-sdk-athena/lib/aws-sdk-athena/types.rb', line 1020

class Database < Struct.new(
  :name,
  :description,
  :parameters)
  SENSITIVE = []
  include Aws::Structure
end

#parametersHash<String,String>

A set of custom key/value pairs.

Returns:

  • (Hash<String,String>)


1020
1021
1022
1023
1024
1025
1026
# File 'gems/aws-sdk-athena/lib/aws-sdk-athena/types.rb', line 1020

class Database < Struct.new(
  :name,
  :description,
  :parameters)
  SENSITIVE = []
  include Aws::Structure
end