Class: Aws::Glue::Types::CatalogSource

Inherits:
Struct
  • Object
show all
Includes:
Structure
Defined in:
lib/aws-sdk-glue/types.rb

Overview

Specifies a data store in the Glue Data Catalog.

Constant Summary collapse

SENSITIVE =
[]

Instance Attribute Summary collapse

Instance Attribute Details

#databaseString

The name of the database to read from.

Returns:

  • (String)


1899
1900
1901
1902
1903
1904
1905
# File 'lib/aws-sdk-glue/types.rb', line 1899

class CatalogSource < Struct.new(
  :name,
  :database,
  :table)
  SENSITIVE = []
  include Aws::Structure
end

#nameString

The name of the data store.

Returns:

  • (String)


1899
1900
1901
1902
1903
1904
1905
# File 'lib/aws-sdk-glue/types.rb', line 1899

class CatalogSource < Struct.new(
  :name,
  :database,
  :table)
  SENSITIVE = []
  include Aws::Structure
end

#tableString

The name of the table in the database to read from.

Returns:

  • (String)


1899
1900
1901
1902
1903
1904
1905
# File 'lib/aws-sdk-glue/types.rb', line 1899

class CatalogSource < Struct.new(
  :name,
  :database,
  :table)
  SENSITIVE = []
  include Aws::Structure
end