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

FindingsFilterListItem

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

Provides information about a findings filter.

interface FindingsFilterListItem {
action?: FindingsFilterAction | null;
arn?: string | null;
id?: string | null;
name?: string | null;
tags?: {
[key: string]: string | null | undefined;
}
| null;
}

§Properties

§

The action that's performed on findings that meet the filter criteria. Possible values are: ARCHIVE, suppress (automatically archive) the findings; and, NOOP, don't perform any action on the findings.

§
arn?: string | null
[src]

The Amazon Resource Name (ARN) of the filter.

§
id?: string | null
[src]

The unique identifier for the filter.

§
name?: string | null
[src]

The custom name of the filter.

§
tags?: {
[key: string]: string | null | undefined;
}
| null
[src]

A map of key-value pairs that identifies the tags (keys and values) that are associated with the filter.