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

UserDefinedFunctionInput

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

A structure used to create or update a user-defined function.

interface UserDefinedFunctionInput {
ClassName?: string | null;
FunctionName?: string | null;
OwnerName?: string | null;
OwnerType?: PrincipalType | null;
ResourceUris?: ResourceUri[] | null;
}

§Properties

§
ClassName?: string | null
[src]

The Java class that contains the function code.

§
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.