Class: Aws::Glue::Types::CatalogSource
- Inherits:
-
Struct
- Object
- Struct
- Aws::Glue::Types::CatalogSource
- 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
-
#database ⇒ String
The name of the database to read from.
-
#name ⇒ String
The name of the data store.
-
#table ⇒ String
The name of the table in the database to read from.
Instance Attribute Details
#database ⇒ String
The name of the database to read from.
2341 2342 2343 2344 2345 2346 2347 |
# File 'lib/aws-sdk-glue/types.rb', line 2341 class CatalogSource < Struct.new( :name, :database, :table) SENSITIVE = [] include Aws::Structure end |
#name ⇒ String
The name of the data store.
2341 2342 2343 2344 2345 2346 2347 |
# File 'lib/aws-sdk-glue/types.rb', line 2341 class CatalogSource < Struct.new( :name, :database, :table) SENSITIVE = [] include Aws::Structure end |
#table ⇒ String
The name of the table in the database to read from.
2341 2342 2343 2344 2345 2346 2347 |
# File 'lib/aws-sdk-glue/types.rb', line 2341 class CatalogSource < Struct.new( :name, :database, :table) SENSITIVE = [] include Aws::Structure end |