Module Values.ConformancePackEvaluationResultSource

The details of a conformance pack evaluation. Provides Config rule and Amazon Web Services resource type that was evaluated, the compliance of the conformance pack, related time stamps, and supplementary information.

Sourcetype nonrec t = {
  1. complianceType : ConformancePackComplianceType.t option;
    (*

    The compliance type. The allowed values are COMPLIANT and NON_COMPLIANT. INSUFFICIENT_DATA is not supported.

    *)
  2. evaluationResultIdentifier : EvaluationResultIdentifier.t option;
  3. configRuleInvokedTime : Date.t option;
    (*

    The time when Config rule evaluated Amazon Web Services resource.

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

    The time when Config recorded the evaluation result.

    *)
  5. annotation : Annotation.t option;
    (*

    Supplementary information about how the evaluation determined the compliance.

    *)
}
Sourceval make : ?complianceType:??? -> ?evaluationResultIdentifier:??? -> ?configRuleInvokedTime:??? -> ?resultRecordedTime:??? -> ?annotation:??? -> unit -> t
Sourceval to_value : t -> [> `Structure of (string * [> `Enum of string | `String of Annotation.t | `Structure of (string * [> `String of ResourceEvaluationId.t | `Structure of (string * [> `Enum of string | `String of ConfigRuleName.t ]) list | `Timestamp of Date.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