Module Values.AggregateComplianceByConfigRuleSource

Indicates whether an Config rule is compliant based on account ID, region, compliance, and rule name. A rule is compliant if all of the resources that the rule evaluated comply with it. It is noncompliant if any of these resources do not comply.

Sourcetype nonrec t = {
  1. configRuleName : ConfigRuleName.t option;
    (*

    The name of the Config rule.

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

    Indicates whether an Amazon Web Services resource or Config rule is compliant and provides the number of contributors that affect the compliance.

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

    The 12-digit account ID of the source account.

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

    The source region from where the data is aggregated.

    *)
}
Sourceval make : ?configRuleName:??? -> ?compliance:??? -> ?accountId:??? -> ?awsRegion:??? -> unit -> t
Sourceval to_value : t -> [> `Structure of (string * [> `String of ConfigRuleName.t | `Structure of (string * [> `Enum of string | `Structure of (string * [> `Boolean of Boolean.t | `Integer of Integer.t ]) list ]) 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