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

MetadataKeyValuePair

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

A structure containing a key value pair for metadata.

interface MetadataKeyValuePair {
MetadataKey?: string | null;
MetadataValue?: string | null;
}

§Properties

§
MetadataKey?: string | null
[src]

A metadata key.

§
MetadataValue?: string | null
[src]

A metadata key’s corresponding value.