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

ConformancePackEvaluationFilters

import type { ConformancePackEvaluationFilters } from "https://aws-api.deno.dev/v0.4/services/configservice.ts?docs=full";

Filters a conformance pack by Config rule names, compliance types, Amazon Web Services resource types, and resource IDs.

interface ConformancePackEvaluationFilters {
ComplianceType?: ConformancePackComplianceType | null;
ConfigRuleNames?: string[] | null;
ResourceIds?: string[] | null;
ResourceType?: string | null;
}

§Properties

§
ComplianceType?: ConformancePackComplianceType | null
[src]

Filters the results by compliance.

The allowed values are COMPLIANT and NON_COMPLIANT. INSUFFICIENT_DATA is not supported.

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

Filters the results by Config rule names.

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

Filters the results by resource IDs.

Note: This is valid only when you provide resource type. If there is no resource type, you will see an error.

§
ResourceType?: string | null
[src]

Filters the results by the resource type (for example, "AWS::EC2::Instance").