Module Values.EvaluationResultSource

Describes the compliance status for the account. An account is considered noncompliant if it includes resources that are not protected by the specified policy or that don't comply with the policy.

Sourcetype nonrec t = {
  1. complianceStatus : PolicyComplianceStatusType.t option;
    (*

    Describes an Amazon Web Services account's compliance with the Firewall Manager policy.

    *)
  2. violatorCount : ResourceCount.t option;
    (*

    The number of resources that are noncompliant with the specified policy. For WAF and Shield Advanced policies, a resource is considered noncompliant if it is not associated with the policy. For security group policies, a resource is considered noncompliant if it doesn't comply with the rules of the policy and remediation is disabled or not possible.

    *)
  3. evaluationLimitExceeded : Boolean.t option;
    (*

    Indicates that over 100 resources are noncompliant with the Firewall Manager policy.

    *)
}
Sourceval make : ?complianceStatus:??? -> ?violatorCount:??? -> ?evaluationLimitExceeded:??? -> unit -> t
Sourceval to_value : t -> [> `Structure of (string * [> `Boolean of Boolean.t | `Enum of string | `Long of ResourceCount.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