Skip to content

List Resources

lakeformation_list_resources R Documentation

Lists the resources registered to be managed by the Data Catalog

Description

Lists the resources registered to be managed by the Data Catalog.

Usage

lakeformation_list_resources(FilterConditionList, MaxResults, NextToken)

Arguments

FilterConditionList

Any applicable row-level and/or column-level filtering conditions for the resources.

MaxResults

The maximum number of resource results.

NextToken

A continuation token, if this is not the first call to retrieve these resources.

Value

A list with the following syntax:

list(
  ResourceInfoList = list(
    list(
      ResourceArn = "string",
      RoleArn = "string",
      LastModified = as.POSIXct(
        "2015-01-01"
      ),
      WithFederation = TRUE|FALSE,
      HybridAccessEnabled = TRUE|FALSE
    )
  ),
  NextToken = "string"
)

Request syntax

svc$list_resources(
  FilterConditionList = list(
    list(
      Field = "RESOURCE_ARN"|"ROLE_ARN"|"LAST_MODIFIED",
      ComparisonOperator = "EQ"|"NE"|"LE"|"LT"|"GE"|"GT"|"CONTAINS"|"NOT_CONTAINS"|"BEGINS_WITH"|"IN"|"BETWEEN",
      StringValueList = list(
        "string"
      )
    )
  ),
  MaxResults = 123,
  NextToken = "string"
)