Module Values.GetResourceEvaluationSummaryResponseSource

Returns a summary of resource evaluation for the specified resource evaluation ID from the proactive rules that were run. The results indicate which evaluation context was used to evaluate the rules, which resource details were evaluated, the evaluation mode that was run, and whether the resource details comply with the configuration of the proactive rules. To see additional information about the evaluation result, such as which rule flagged a resource as NON_COMPLIANT, use the GetComplianceDetailsByResource API. For more information, see the Examples section.

Sourcetype nonrec t = {
  1. resourceEvaluationId : ResourceEvaluationId.t option;
    (*

    The unique ResourceEvaluationId of Amazon Web Services resource execution for which you want to retrieve the evaluation summary.

    *)
  2. evaluationMode : EvaluationMode.t option;
    (*

    Lists results of the mode that you requested to retrieve the resource evaluation summary. The valid values are Detective or Proactive.

    *)
  3. evaluationStatus : EvaluationStatus.t option;
    (*

    Returns an EvaluationStatus object.

    *)
  4. evaluationStartTimestamp : Date.t option;
    (*

    The start timestamp when Config rule starts evaluating compliance for the provided resource details.

    *)
  5. compliance : ComplianceType.t option;
    (*

    The compliance status of the resource evaluation summary.

    *)
  6. evaluationContext : EvaluationContext.t option;
    (*

    Returns an EvaluationContext object.

    *)
  7. resourceDetails : ResourceDetails.t option;
    (*

    Returns a ResourceDetails object.

    *)
}
Sourcetype nonrec error = [
  1. | `ResourceNotFoundException of ResourceNotFoundException.t
  2. | `Unknown_operation_error of string * string option
]
Sourceval make : ?resourceEvaluationId:??? -> ?evaluationMode:??? -> ?evaluationStatus:??? -> ?evaluationStartTimestamp:??? -> ?compliance:??? -> ?evaluationContext:??? -> ?resourceDetails:??? -> unit -> t
Sourceval error_of_json : string -> Yojson.Safe.t -> [> `ResourceNotFoundException of unit | `Unknown_operation_error of string * string option ]
Sourceval error_of_xml : string -> Awso.Xml.t -> [> `ResourceNotFoundException of unit | `Unknown_operation_error of string * string option ]
Sourceval error_to_json : error -> Yojson.Safe.t
Sourceval to_value : t -> [> `Structure of (string * [> `Enum of string | `String of ResourceEvaluationId.t | `Structure of (string * [> `Enum of string | `String of StringWithCharLimit1024.t ]) list | `Timestamp of Date.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