Class: Aws::LakeFormation::Types::TableResource

Inherits:
Struct
  • Object
show all
Defined in:
gems/aws-sdk-lakeformation/lib/aws-sdk-lakeformation/types.rb

Overview

A structure for the table object. A table is a metadata definition that represents your data. You can Grant and Revoke table privileges to a principal.

Constant Summary collapse

SENSITIVE =
[]

Instance Attribute Summary collapse

Instance Attribute Details

#catalog_idString

The identifier for the Data Catalog. By default, it is the account ID of the caller.

Returns:

  • (String)


3308
3309
3310
3311
3312
3313
3314
3315
# File 'gems/aws-sdk-lakeformation/lib/aws-sdk-lakeformation/types.rb', line 3308

class TableResource < Struct.new(
  :catalog_id,
  :database_name,
  :name,
  :table_wildcard)
  SENSITIVE = []
  include Aws::Structure
end

#database_nameString

The name of the database for the table. Unique to a Data Catalog. A database is a set of associated table definitions organized into a logical group. You can Grant and Revoke database privileges to a principal.

Returns:

  • (String)


3308
3309
3310
3311
3312
3313
3314
3315
# File 'gems/aws-sdk-lakeformation/lib/aws-sdk-lakeformation/types.rb', line 3308

class TableResource < Struct.new(
  :catalog_id,
  :database_name,
  :name,
  :table_wildcard)
  SENSITIVE = []
  include Aws::Structure
end

#nameString

The name of the table.

Returns:

  • (String)


3308
3309
3310
3311
3312
3313
3314
3315
# File 'gems/aws-sdk-lakeformation/lib/aws-sdk-lakeformation/types.rb', line 3308

class TableResource < Struct.new(
  :catalog_id,
  :database_name,
  :name,
  :table_wildcard)
  SENSITIVE = []
  include Aws::Structure
end

#table_wildcardTypes::TableWildcard

A wildcard object representing every table under a database.

At least one of TableResource$Name or TableResource$TableWildcard is required.

Returns:

  • (Types::TableWildcard)


3308
3309
3310
3311
3312
3313
3314
3315
# File 'gems/aws-sdk-lakeformation/lib/aws-sdk-lakeformation/types.rb', line 3308

class TableResource < Struct.new(
  :catalog_id,
  :database_name,
  :name,
  :table_wildcard)
  SENSITIVE = []
  include Aws::Structure
end