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

RegistryId

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

A wrapper structure that may contain the registry name and Amazon Resource Name (ARN).

interface RegistryId {
RegistryArn?: string | null;
RegistryName?: string | null;
}

§Properties

§
RegistryArn?: string | null
[src]

Arn of the registry to be updated. One of RegistryArn or RegistryName has to be provided.

§
RegistryName?: string | null
[src]

Name of the registry. Used only for lookup. One of RegistryArn or RegistryName has to be provided.