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

TagValuePair

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

Specifies a tag key or tag key and value pair to use in a tag-based condition that determines whether an S3 object is included or excluded from a classification job. Tag keys and values are case sensitive. Also, Amazon Macie doesn't support use of partial values or wildcard characters in tag-based conditions.

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

§Properties

§
key?: string | null
[src]

The value for the tag key to use in the condition.

§
value?: string | null
[src]

The tag value, associated with the specified tag key (key), to use in the condition. To specify only a tag key for a condition, specify the tag key for the key property and set this value to an empty string.