Module Values.AggregateComplianceByConformancePackSource

Provides aggregate compliance of the conformance pack. Indicates whether a conformance pack is compliant based on the name of the conformance pack, account ID, and region. 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.

Sourcetype nonrec t = {
  1. conformancePackName : ConformancePackName.t option;
    (*

    The name of the conformance pack.

    *)
  2. compliance : AggregateConformancePackCompliance.t option;
    (*

    The compliance status of the conformance pack.

    *)
  3. accountId : AccountId.t option;
    (*

    The 12-digit Amazon Web Services account ID of the source account.

    *)
  4. awsRegion : AwsRegion.t option;
    (*

    The source Amazon Web Services Region from where the data is aggregated.

    *)
}
Sourceval make : ?conformancePackName:??? -> ?compliance:??? -> ?accountId:??? -> ?awsRegion:??? -> unit -> t
Sourceval to_value : t -> [> `Structure of (string * [> `String of ConformancePackName.t | `Structure of (string * [> `Enum of string | `Integer of Integer.t ]) list ]) list ]
Sourceval to_query : t -> Awso.Client.Query.t
Sourceval of_xml : Awso.Xml.t -> t
Sourceval of_string : string -> t
Sourceval of_json : Yojson.Safe.t -> t
Sourceval to_json : t -> Yojson.Safe.t