Skip to content

Get Lf Tag Expression

lakeformation_get_lf_tag_expression R Documentation

Returns the details about the LF-Tag expression

Description

Returns the details about the LF-Tag expression. The caller must be a data lake admin or must have DESCRIBE permission on the LF-Tag expression resource.

Usage

lakeformation_get_lf_tag_expression(Name, CatalogId)

Arguments

Name

[required] The name for the LF-Tag expression

CatalogId

The identifier for the Data Catalog. By default, the account ID.

Value

A list with the following syntax:

list(
  Name = "string",
  Description = "string",
  CatalogId = "string",
  Expression = list(
    list(
      TagKey = "string",
      TagValues = list(
        "string"
      )
    )
  )
)

Request syntax

svc$get_lf_tag_expression(
  Name = "string",
  CatalogId = "string"
)