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

KeyValuePair

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

Provides information about the tags that are associated with an S3 bucket or object. Each tag consists of a required tag key and an associated tag value.

interface KeyValuePair {
key?: string | null;
value?: string | null;
}

§Properties

§
key?: string | null
[src]

One part of a key-value pair that comprises a tag. A tag key is a general label that acts as a category for more specific tag values.

§
value?: string | null
[src]

One part of a key-value pair that comprises a tag. A tag value acts as a descriptor for a tag key. A tag value can be an empty string.