Get User Defined Functions
glue_get_user_defined_functions | R Documentation |
Retrieves multiple function definitions from the Data Catalog¶
Description¶
Retrieves multiple function definitions from the Data Catalog.
Usage¶
Arguments¶
CatalogId
The ID of the Data Catalog where the functions to be retrieved are located. If none is provided, the Amazon Web Services account ID is used by default.
DatabaseName
The name of the catalog database where the functions are located. If none is provided, functions from all the databases across the catalog will be returned.
Pattern
[required] An optional function-name pattern string that filters the function definitions returned.
NextToken
A continuation token, if this is a continuation call.
MaxResults
The maximum number of functions to return in one response.
Value¶
A list with the following syntax:
list(
UserDefinedFunctions = list(
list(
FunctionName = "string",
DatabaseName = "string",
ClassName = "string",
OwnerName = "string",
OwnerType = "USER"|"ROLE"|"GROUP",
CreateTime = as.POSIXct(
"2015-01-01"
),
ResourceUris = list(
list(
ResourceType = "JAR"|"FILE"|"ARCHIVE",
Uri = "string"
)
),
CatalogId = "string"
)
),
NextToken = "string"
)