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

Filter

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

Details about a filter.

interface Filter {
action: FilterAction;
arn: string;
createdAt: Date | number;
criteria: FilterCriteria;
description?: string | null;
name: string;
ownerId: string;
reason?: string | null;
tags?: {
[key: string]: string | null | undefined;
}
| null;
updatedAt: Date | number;
}

§Properties

§

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

§
arn: string
[src]

The Amazon Resource Number (ARN) associated with this filter.

§
createdAt: Date | number
[src]

The date and time this filter was created at.

§

Details on the filter criteria associated with this filter.

§
description?: string | null
[src]

A description of the filter.

§
name: string
[src]

The name of the filter.

§
ownerId: string
[src]

The Amazon Web Services account ID of the account that created the filter.

§
reason?: string | null
[src]

The reason for the filter.

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

The tags attached to the filter.

§
updatedAt: Date | number
[src]

The date and time the filter was last updated at.