Skip to content

Get Data Lake Settings

lakeformation_get_data_lake_settings R Documentation

Retrieves the list of the data lake administrators of a Lake Formation-managed data lake

Description

Retrieves the list of the data lake administrators of a Lake Formation-managed data lake.

Usage

lakeformation_get_data_lake_settings(CatalogId)

Arguments

CatalogId

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 Lake Formation environment.

Value

A list with the following syntax:

list(
  DataLakeSettings = list(
    DataLakeAdmins = list(
      list(
        DataLakePrincipalIdentifier = "string"
      )
    ),
    ReadOnlyAdmins = list(
      list(
        DataLakePrincipalIdentifier = "string"
      )
    ),
    CreateDatabaseDefaultPermissions = list(
      list(
        Principal = list(
          DataLakePrincipalIdentifier = "string"
        ),
        Permissions = list(
          "ALL"|"SELECT"|"ALTER"|"DROP"|"DELETE"|"INSERT"|"DESCRIBE"|"CREATE_DATABASE"|"CREATE_TABLE"|"DATA_LOCATION_ACCESS"|"CREATE_LF_TAG"|"ASSOCIATE"|"GRANT_WITH_LF_TAG_EXPRESSION"
        )
      )
    ),
    CreateTableDefaultPermissions = list(
      list(
        Principal = list(
          DataLakePrincipalIdentifier = "string"
        ),
        Permissions = list(
          "ALL"|"SELECT"|"ALTER"|"DROP"|"DELETE"|"INSERT"|"DESCRIBE"|"CREATE_DATABASE"|"CREATE_TABLE"|"DATA_LOCATION_ACCESS"|"CREATE_LF_TAG"|"ASSOCIATE"|"GRANT_WITH_LF_TAG_EXPRESSION"
        )
      )
    ),
    Parameters = list(
      "string"
    ),
    TrustedResourceOwners = list(
      "string"
    ),
    AllowExternalDataFiltering = TRUE|FALSE,
    AllowFullTableExternalDataAccess = TRUE|FALSE,
    ExternalDataFilteringAllowList = list(
      list(
        DataLakePrincipalIdentifier = "string"
      )
    ),
    AuthorizedSessionTagValueList = list(
      "string"
    )
  )
)

Request syntax

svc$get_data_lake_settings(
  CatalogId = "string"
)