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

CreateFilterRequest

import type { CreateFilterRequest } from "https://aws-api.deno.dev/v0.3/services/inspector2.ts?docs=full";
interface CreateFilterRequest {
action: FilterAction;
description?: string | null;
filterCriteria: FilterCriteria;
name: string;
tags?: {
[key: string]: string | null | undefined;
}
| null;
}

§Properties

§

Defines the action that is to be applied to the findings that match the filter.

§
description?: string | null
[src]

A description of the filter.

§
filterCriteria: FilterCriteria
[src]

Defines the criteria to be used in the filter for querying findings.

§
name: string
[src]

The name of the filter. Minimum length of 3. Maximum length of 64. Valid characters include alphanumeric characters, dot (.), underscore (_), and dash (-). Spaces are not allowed.

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

A list of tags for the filter.