List Data Catalogs
| athena_list_data_catalogs | R Documentation |
Lists the data catalogs in the current Amazon Web Services account¶
Description¶
Lists the data catalogs in the current Amazon Web Services account.
In the Athena console, data catalogs are listed as "data sources" on the Data sources page under the Data source name column.
Usage¶
Arguments¶
NextTokenA token generated by the Athena service that specifies where to continue pagination if a previous request was truncated. To obtain the next set of pages, pass in the NextToken from the response object of the previous page call.
MaxResultsSpecifies the maximum number of data catalogs to return.
WorkGroupThe name of the workgroup. Required if making an IAM Identity Center request.
Value¶
A list with the following syntax:
list(
DataCatalogsSummary = list(
list(
CatalogName = "string",
Type = "LAMBDA"|"GLUE"|"HIVE"
)
),
NextToken = "string"
)