Class: Aws::LakeFormation::Types::TableWithColumnsResource
- Inherits:
-
Struct
- Object
- Struct
- Aws::LakeFormation::Types::TableWithColumnsResource
- Includes:
- Structure
- Defined in:
- lib/aws-sdk-lakeformation/types.rb
Overview
A structure for a table with columns object. This object is only used when granting a SELECT permission.
This object must take a value for at least one of ‘ColumnsNames`, `ColumnsIndexes`, or `ColumnsWildcard`.
Constant Summary collapse
- SENSITIVE =
[]
Instance Attribute Summary collapse
-
#catalog_id ⇒ String
The identifier for the Data Catalog.
-
#column_names ⇒ Array<String>
The list of column names for the table.
-
#column_wildcard ⇒ Types::ColumnWildcard
A wildcard specified by a ‘ColumnWildcard` object.
-
#database_name ⇒ String
The name of the database for the table with columns resource.
-
#name ⇒ String
The name of the table resource.
Instance Attribute Details
#catalog_id ⇒ String
The identifier for the Data Catalog. By default, it is the account ID of the caller.
3584 3585 3586 3587 3588 3589 3590 3591 3592 |
# File 'lib/aws-sdk-lakeformation/types.rb', line 3584 class TableWithColumnsResource < Struct.new( :catalog_id, :database_name, :name, :column_names, :column_wildcard) SENSITIVE = [] include Aws::Structure end |
#column_names ⇒ Array<String>
The list of column names for the table. At least one of ‘ColumnNames` or `ColumnWildcard` is required.
3584 3585 3586 3587 3588 3589 3590 3591 3592 |
# File 'lib/aws-sdk-lakeformation/types.rb', line 3584 class TableWithColumnsResource < Struct.new( :catalog_id, :database_name, :name, :column_names, :column_wildcard) SENSITIVE = [] include Aws::Structure end |
#column_wildcard ⇒ Types::ColumnWildcard
A wildcard specified by a ‘ColumnWildcard` object. At least one of `ColumnNames` or `ColumnWildcard` is required.
3584 3585 3586 3587 3588 3589 3590 3591 3592 |
# File 'lib/aws-sdk-lakeformation/types.rb', line 3584 class TableWithColumnsResource < Struct.new( :catalog_id, :database_name, :name, :column_names, :column_wildcard) SENSITIVE = [] include Aws::Structure end |
#database_name ⇒ String
The name of the database for the table with columns resource. Unique to the 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.
3584 3585 3586 3587 3588 3589 3590 3591 3592 |
# File 'lib/aws-sdk-lakeformation/types.rb', line 3584 class TableWithColumnsResource < Struct.new( :catalog_id, :database_name, :name, :column_names, :column_wildcard) SENSITIVE = [] include Aws::Structure end |
#name ⇒ String
The name of the table resource. A table is a metadata definition that represents your data. You can Grant and Revoke table privileges to a principal.
3584 3585 3586 3587 3588 3589 3590 3591 3592 |
# File 'lib/aws-sdk-lakeformation/types.rb', line 3584 class TableWithColumnsResource < Struct.new( :catalog_id, :database_name, :name, :column_names, :column_wildcard) SENSITIVE = [] include Aws::Structure end |