Class: Aws::Glue::Types::RelationalCatalogSource

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

Overview

Specifies a Relational database data source 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)


21274
21275
21276
21277
21278
21279
21280
# File 'lib/aws-sdk-glue/types.rb', line 21274

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

#nameString

The name of the data source.

Returns:

  • (String)


21274
21275
21276
21277
21278
21279
21280
# File 'lib/aws-sdk-glue/types.rb', line 21274

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

#tableString

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

Returns:

  • (String)


21274
21275
21276
21277
21278
21279
21280
# File 'lib/aws-sdk-glue/types.rb', line 21274

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