Module Values.ConformancePackRuleComplianceSource

Compliance information of one or more Config rules within a conformance pack. You can filter using Config rule names and compliance types.

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

    Name of the Config rule.

    *)
  2. complianceType : ConformancePackComplianceType.t option;
    (*

    Compliance of the Config rule.

    *)
  3. controls : ControlsList.t option;
    (*

    Controls for the conformance pack. A control is a process to prevent or detect problems while meeting objectives. A control can align with a specific compliance regime or map to internal controls defined by an organization.

    *)
}
Sourceval make : ?configRuleName:??? -> ?complianceType:??? -> ?controls:??? -> unit -> t
Sourceval to_value : t -> [> `Structure of (string * [> `Enum of string | `List of [> `String of StringWithCharLimit128.t ] list | `String of ConfigRuleName.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