Module Values.ComplianceSummarySource

The number of Config rules or Amazon Web Services resources that are compliant and noncompliant.

Sourcetype nonrec t = {
  1. compliantResourceCount : ComplianceContributorCount.t option;
    (*

    The number of Config rules or Amazon Web Services resources that are compliant, up to a maximum of 25 for rules and 100 for resources.

    *)
  2. nonCompliantResourceCount : ComplianceContributorCount.t option;
    (*

    The number of Config rules or Amazon Web Services resources that are noncompliant, up to a maximum of 25 for rules and 100 for resources.

    *)
  3. complianceSummaryTimestamp : Date.t option;
    (*

    The time that Config created the compliance summary.

    *)
}
Sourceval make : ?compliantResourceCount:??? -> ?nonCompliantResourceCount:??? -> ?complianceSummaryTimestamp:??? -> unit -> t
Sourceval to_value : t -> [> `Structure of (string * [> `Structure of (string * [> `Boolean of Boolean.t | `Integer of Integer.t ]) list | `Timestamp of Date.t ]) 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