Module Values.DescribeConfigRuleEvaluationStatusRequestSource

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

    The name of the Config managed rules for which you want status information. If you do not specify any names, Config returns status information for all Config managed rules that you use.

    *)
  2. 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.

    *)
  3. limit : RuleLimit.t option;
    (*

    The number of rule evaluation results that you want returned. This parameter is required if the rule limit for your account is more than the default of 1000 rules. For information about requesting a rule limit increase, see Config Limits in the Amazon Web Services General Reference Guide.

    *)
}
Sourceval make : ?configRuleNames:??? -> ?nextToken:??? -> ?limit:??? -> unit -> t
Sourceval to_value : t -> [> `Structure of (string * [> `Integer of RuleLimit.t | `List of [> `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