Class: Aws::LakeFormation::Types::TableWithColumnsResource

Inherits:
Struct
  • Object
show all
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

Instance Attribute Details

#catalog_idString

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

Returns:

  • (String)


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_namesArray<String>

The list of column names for the table. At least one of ‘ColumnNames` or `ColumnWildcard` is required.

Returns:

  • (Array<String>)


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_wildcardTypes::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_nameString

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.

Returns:

  • (String)


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

#nameString

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.

Returns:

  • (String)


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