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)


1706
1707
1708
1709
1710
1711
# File 'lib/aws-sdk-glue/types.rb', line 1706

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

#table_nameString

The name of the table in question.

Returns:

  • (String)


1706
1707
1708
1709
1710
1711
# File 'lib/aws-sdk-glue/types.rb', line 1706

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