Class: Aws::Glue::Types::CatalogEntry

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

Overview

Specifies a table definition in the Glue Data Catalog.

Constant Summary collapse

SENSITIVE =
[]

Instance Attribute Summary collapse

Instance Attribute Details

#database_nameString

The database in which the table metadata resides.

Returns:

  • (String)


1842
1843
1844
1845
1846
1847
# File 'lib/aws-sdk-glue/types.rb', line 1842

class CatalogEntry < Struct.new(
  :database_name,
  :table_name)
  SENSITIVE = []
  include Aws::Structure
end

#table_nameString

The name of the table in question.

Returns:

  • (String)


1842
1843
1844
1845
1846
1847
# File 'lib/aws-sdk-glue/types.rb', line 1842

class CatalogEntry < Struct.new(
  :database_name,
  :table_name)
  SENSITIVE = []
  include Aws::Structure
end