You are viewing documentation for version 2 of the AWS SDK for Ruby. Version 3 documentation can be found here.

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

Inherits:
Struct
  • Object
show all
Defined in:
(unknown)

Overview

Note:

When passing TableWithColumnsResource as input to an Aws::Client method, you can use a vanilla Hash:

{
  catalog_id: "CatalogIdString",
  database_name: "NameString", # required
  name: "NameString", # required
  column_names: ["NameString"],
  column_wildcard: {
    excluded_column_names: ["NameString"],
  },
}

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.

Returned by:

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)

    The identifier for the Data Catalog.

#column_namesArray<String>

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

Returns:

  • (Array<String>)

    The list of column names for the table.

#column_wildcardTypes::ColumnWildcard

A wildcard specified by a ColumnWildcard object. At least one of ColumnNames or ColumnWildcard is required.

Returns:

#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)

    The name of the database for the table with columns resource.

#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)

    The name of the table resource.