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

AggregateConformancePackCompliance

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

Provides the number of compliant and noncompliant rules within a conformance pack. Also provides the compliance status of the conformance pack and the total rule count which includes compliant rules, noncompliant rules, and rules that cannot be evaluated due to insufficient data.

A conformance pack is compliant if all of the rules in a conformance packs are compliant. It is noncompliant if any of the rules are not compliant. The compliance status of a conformance pack is INSUFFICIENT_DATA only if all rules within a conformance pack cannot be evaluated due to insufficient data. If some of the rules in a conformance pack are compliant but the compliance status of other rules in that same conformance pack is INSUFFICIENT_DATA, the conformance pack shows compliant.

interface AggregateConformancePackCompliance {
ComplianceType?: ConformancePackComplianceType | null;
CompliantRuleCount?: number | null;
NonCompliantRuleCount?: number | null;
TotalRuleCount?: number | null;
}

§Properties

§
ComplianceType?: ConformancePackComplianceType | null
[src]

The compliance status of the conformance pack.

§
CompliantRuleCount?: number | null
[src]

The number of compliant Config Rules.

§
NonCompliantRuleCount?: number | null
[src]

The number of noncompliant Config Rules.

§
TotalRuleCount?: number | null
[src]

Total number of compliant rules, noncompliant rules, and the rules that do not have any applicable resources to evaluate upon resulting in insufficient data.