Hi there! Are you looking for the official Deno documentation? Try docs.deno.com for all your Deno learning needs.

UserDefinedFunction

import type { UserDefinedFunction } from "https://aws-api.deno.dev/v0.3/services/glue.ts?docs=full";

Represents the equivalent of a Hive user-defined function (UDF) definition.

interface UserDefinedFunction {
CatalogId?: string | null;
ClassName?: string | null;
CreateTime?: Date | number | null;
DatabaseName?: string | null;
FunctionName?: string | null;
OwnerName?: string | null;
OwnerType?: PrincipalType | null;
ResourceUris?: ResourceUri[] | null;
}

§Properties

§
CatalogId?: string | null
[src]

The ID of the Data Catalog in which the function resides.

§
ClassName?: string | null
[src]

The Java class that contains the function code.

§
CreateTime?: Date | number | null
[src]

The time at which the function was created.

§
DatabaseName?: string | null
[src]

The name of the catalog database that contains the function.

§
FunctionName?: string | null
[src]

The name of the function.

§
OwnerName?: string | null
[src]

The owner of the function.

§
OwnerType?: PrincipalType | null
[src]

The owner type.

§
ResourceUris?: ResourceUri[] | null
[src]

The resource URIs for the function.