Module Values.PutEvaluationsRequestSource

Sourcetype nonrec t = {
  1. evaluations : Evaluations.t option;
    (*

    The assessments that the Lambda function performs. Each evaluation identifies an Amazon Web Services resource and indicates whether it complies with the Config rule that invokes the Lambda function.

    *)
  2. resultToken : String_.t;
    (*

    An encrypted token that associates an evaluation with an Config rule. Identifies the rule and the event that triggered the evaluation.

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

    Use this parameter to specify a test run for PutEvaluations. You can verify whether your Lambda function will deliver evaluation results to Config. No updates occur to your existing evaluations, and evaluation results are not sent to Config. When TestMode is true, PutEvaluations doesn't require a valid value for the ResultToken parameter, but the value cannot be null.

    *)
}
Sourceval context_ : string
Sourceval make : ?evaluations:??? -> ?testMode:??? -> resultToken:String_.t -> unit -> t
Sourceval to_value : t -> [> `Structure of (string * [> `Boolean of Boolean.t | `List of [> `Structure of (string * [> `Enum of string | `String of StringWithCharLimit256.t | `Timestamp of OrderingTimestamp.t ]) list ] 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