Learn R Programming

paws.analytics (version 0.1.11)

glue_get_user_defined_function: Retrieves a specified function definition from the Data Catalog

Description

Retrieves a specified function definition from the Data Catalog.

Usage

glue_get_user_defined_function(CatalogId, DatabaseName, FunctionName)

Arguments

CatalogId

The ID of the Data Catalog where the function to be retrieved is located. If none is provided, the AWS account ID is used by default.

DatabaseName

[required] The name of the catalog database where the function is located.

FunctionName

[required] The name of the function.

Value

A list with the following syntax:

list(
  UserDefinedFunction = 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"
  )
)

Request syntax

svc$get_user_defined_function(
  CatalogId = "string",
  DatabaseName = "string",
  FunctionName = "string"
)