paws.analytics (version 0.1.0)

glue_update_user_defined_function: Updates an existing function definition in the Data Catalog

Description

Updates an existing function definition in the Data Catalog.

Usage

glue_update_user_defined_function(CatalogId, DatabaseName, FunctionName,
  FunctionInput)

Arguments

CatalogId

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

DatabaseName

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

FunctionName

[required] The name of the function.

FunctionInput

[required] A FunctionInput object that re-defines the function in the Data Catalog.

Request syntax

svc$update_user_defined_function(
  CatalogId = "string",
  DatabaseName = "string",
  FunctionName = "string",
  FunctionInput = list(
    FunctionName = "string",
    ClassName = "string",
    OwnerName = "string",
    OwnerType = "USER"|"ROLE"|"GROUP",
    ResourceUris = list(
      list(
        ResourceType = "JAR"|"FILE"|"ARCHIVE",
        Uri = "string"
      )
    )
  )
)