Class: Aws::LakeFormation::Types::TableResource
- Inherits:
-
Struct
- Object
- Struct
- Aws::LakeFormation::Types::TableResource
- 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
-
#catalog_id ⇒ String
The identifier for the Data Catalog.
-
#database_name ⇒ String
The name of the database for the table.
-
#name ⇒ String
The name of the table.
-
#table_wildcard ⇒ Types::TableWildcard
A wildcard object representing every table under a database.
Instance Attribute Details
#catalog_id ⇒ String
The identifier for the Data Catalog. By default, it is the account ID of the caller.
3531 3532 3533 3534 3535 3536 3537 3538 |
# File 'gems/aws-sdk-lakeformation/lib/aws-sdk-lakeformation/types.rb', line 3531 class TableResource < Struct.new( :catalog_id, :database_name, :name, :table_wildcard) SENSITIVE = [] include Aws::Structure end |
#database_name ⇒ String
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.
3531 3532 3533 3534 3535 3536 3537 3538 |
# File 'gems/aws-sdk-lakeformation/lib/aws-sdk-lakeformation/types.rb', line 3531 class TableResource < Struct.new( :catalog_id, :database_name, :name, :table_wildcard) SENSITIVE = [] include Aws::Structure end |
#name ⇒ String
The name of the table.
3531 3532 3533 3534 3535 3536 3537 3538 |
# File 'gems/aws-sdk-lakeformation/lib/aws-sdk-lakeformation/types.rb', line 3531 class TableResource < Struct.new( :catalog_id, :database_name, :name, :table_wildcard) SENSITIVE = [] include Aws::Structure end |
#table_wildcard ⇒ Types::TableWildcard
A wildcard object representing every table under a database.
At least one of TableResource$Name
or
TableResource$TableWildcard
is required.
3531 3532 3533 3534 3535 3536 3537 3538 |
# File 'gems/aws-sdk-lakeformation/lib/aws-sdk-lakeformation/types.rb', line 3531 class TableResource < Struct.new( :catalog_id, :database_name, :name, :table_wildcard) SENSITIVE = [] include Aws::Structure end |