Module Values.ComplianceByConfigRuleSource

Indicates whether an Config rule is compliant. A rule is compliant if all of the resources that the rule evaluated comply with it. A rule is noncompliant if any of these resources do not comply.

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

    The name of the Config rule.

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

    Indicates whether the Config rule is compliant.

    *)
}
Sourceval make : ?configRuleName:??? -> ?compliance:??? -> unit -> t
Sourceval to_value : t -> [> `Structure of (string * [> `String of StringWithCharLimit64.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