Module Values.DescribeComplianceByConfigRuleRequestSource

Sourcetype nonrec t = {
  1. configRuleNames : ConfigRuleNames.t option;
    (*

    Specify one or more Config rule names to filter the results by rule.

    *)
  2. complianceTypes : ComplianceTypes.t option;
    (*

    Filters the results by compliance.

    *)
  3. nextToken : String_.t option;
    (*

    The nextToken string returned on a previous page that you use to get the next page of results in a paginated response.

    *)
}
Sourceval make : ?configRuleNames:??? -> ?complianceTypes:??? -> ?nextToken:??? -> unit -> t
Sourceval to_value : t -> [> `Structure of (string * [> `List of [> `Enum of string | `String of ConfigRuleName.t ] list | `String of String_.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