Creates a new function definition in the Data Catalog.
glue_create_user_defined_function(CatalogId, DatabaseName,
FunctionInput)
An empty list.
The ID of the Data Catalog in which to create the function. If none is provided, the AWS account ID is used by default.
[required] The name of the catalog database in which to create the function.
[required] A FunctionInput
object that defines the function to create in the Data
Catalog.
svc$create_user_defined_function(
CatalogId = "string",
DatabaseName = "string",
FunctionInput = list(
FunctionName = "string",
ClassName = "string",
OwnerName = "string",
OwnerType = "USER"|"ROLE"|"GROUP",
ResourceUris = list(
list(
ResourceType = "JAR"|"FILE"|"ARCHIVE",
Uri = "string"
)
)
)
)