Module Values.EvaluationResultQualifierSource

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

Sourcetype nonrec t = {
  1. configRuleName : ConfigRuleName.t option;
    (*

    The name of the Config rule that was used in the evaluation.

    *)
  2. resourceType : StringWithCharLimit256.t option;
    (*

    The type of Amazon Web Services resource that was evaluated.

    *)
  3. resourceId : BaseResourceId.t option;
    (*

    The ID of the evaluated Amazon Web Services resource.

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

    The mode of an evaluation. The valid values are Detective or Proactive.

    *)
}
Sourceval make : ?configRuleName:??? -> ?resourceType:??? -> ?resourceId:??? -> ?evaluationMode:??? -> unit -> t
Sourceval to_value : t -> [> `Structure of (string * [> `Enum of string | `String of ConfigRuleName.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