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

FindingFilter

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

This data type is used as a request parameter in the "ListFindings" action.

interface FindingFilter {
agentIds?: string[] | null;
attributes?: Attribute[] | null;
autoScalingGroups?: string[] | null;
creationTimeRange?: TimestampRange | null;
ruleNames?: string[] | null;
rulesPackageArns?: string[] | null;
severities?: Severity[] | null;
userAttributes?: Attribute[] | null;
}

§Properties

§
agentIds?: string[] | null
[src]

For a record to match a filter, one of the values that is specified for this data type property must be the exact match of the value of the agentId property of the "Finding" data type.

§
attributes?: Attribute[] | null
[src]

For a record to match a filter, the list of values that are specified for this data type property must be contained in the list of values of the attributes property of the "Finding" data type.

§
autoScalingGroups?: string[] | null
[src]

For a record to match a filter, one of the values that is specified for this data type property must be the exact match of the value of the autoScalingGroup property of the "Finding" data type.

§
creationTimeRange?: TimestampRange | null
[src]

The time range during which the finding is generated.

§
ruleNames?: string[] | null
[src]

For a record to match a filter, one of the values that is specified for this data type property must be the exact match of the value of the ruleName property of the "Finding" data type.

§
rulesPackageArns?: string[] | null
[src]

For a record to match a filter, one of the values that is specified for this data type property must be the exact match of the value of the rulesPackageArn property of the "Finding" data type.

§
severities?: Severity[] | null
[src]

For a record to match a filter, one of the values that is specified for this data type property must be the exact match of the value of the severity property of the "Finding" data type.

§
userAttributes?: Attribute[] | null
[src]

For a record to match a filter, the value that is specified for this data type property must be contained in the list of values of the userAttributes property of the "Finding" data type.