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

TagScopeTerm

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

Specifies a tag-based condition that determines whether an S3 object is included or excluded from a classification job.

interface TagScopeTerm {
comparator?: JobComparator | null;
key?: string | null;
tagValues?: TagValuePair[] | null;
target?: TagTarget | null;
}

§Properties

§
comparator?: JobComparator | null
[src]

The operator to use in the condition. Valid values are EQ (equals) or NE (not equals).

§
key?: string | null
[src]

The object property to use in the condition. The only valid value is TAG.

§
tagValues?: TagValuePair[] | null
[src]

The tag keys or tag key and value pairs to use in the condition. To specify only tag keys in a condition, specify the keys in this array and set the value for each associated tag value to an empty string.

§
target?: TagTarget | null
[src]

The type of object to apply the condition to.