Module Values.EvaluationResultIdentifierSource

Uniquely identifies an evaluation result.

Sourcetype nonrec t = {
  1. evaluationResultQualifier : EvaluationResultQualifier.t option;
    (*

    Identifies an Config rule used to evaluate an Amazon Web Services resource, and provides the type and ID of the evaluated resource.

    *)
  2. orderingTimestamp : Date.t option;
    (*

    The time of the event that triggered the evaluation of your Amazon Web Services resources. The time can indicate when Config delivered a configuration item change notification, or it can indicate when Config delivered the configuration snapshot, depending on which event triggered the evaluation.

    *)
  3. resourceEvaluationId : ResourceEvaluationId.t option;
    (*

    A Unique ID for an evaluation result.

    *)
}
Sourceval make : ?evaluationResultQualifier:??? -> ?orderingTimestamp:??? -> ?resourceEvaluationId:??? -> unit -> t
Sourceval to_value : t -> [> `Structure of (string * [> `String of ResourceEvaluationId.t | `Structure of (string * [> `Enum of string | `String of ConfigRuleName.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