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

Class: Aws::LakeFormation::Types::Resource

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

Overview

Note:

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

{
  catalog: {
  },
  database: {
    catalog_id: "CatalogIdString",
    name: "NameString", # required
  },
  table: {
    catalog_id: "CatalogIdString",
    database_name: "NameString", # required
    name: "NameString",
    table_wildcard: {
    },
  },
  table_with_columns: {
    catalog_id: "CatalogIdString",
    database_name: "NameString", # required
    name: "NameString", # required
    column_names: ["NameString"],
    column_wildcard: {
      excluded_column_names: ["NameString"],
    },
  },
  data_location: {
    catalog_id: "CatalogIdString",
    resource_arn: "ResourceArnString", # required
  },
}

A structure for the resource.

Returned by:

Instance Attribute Summary collapse

Instance Attribute Details

#catalogTypes::CatalogResource

The identifier for the Data Catalog. By default, the account ID. The Data Catalog is the persistent metadata store. It contains database definitions, table definitions, and other control information to manage your AWS Lake Formation environment.

Returns:

#data_locationTypes::DataLocationResource

The location of an Amazon S3 path where permissions are granted or revoked.

Returns:

#databaseTypes::DatabaseResource

The database for the 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 permissions to a principal.

Returns:

#tableTypes::TableResource

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

Returns:

#table_with_columnsTypes::TableWithColumnsResource

The table with columns for the resource. A principal with permissions to this resource can select metadata from the columns of a table in the Data Catalog and the underlying data in Amazon S3.

Returns: