Module Values.ExternalEvaluationSource

Identifies an Amazon Web Services resource and indicates whether it complies with the Config rule that it was evaluated against.

Sourcetype nonrec t = {
  1. complianceResourceType : StringWithCharLimit256.t;
    (*

    The evaluated compliance resource type. Config accepts AWS::::Account resource type.

    *)
  2. complianceResourceId : BaseResourceId.t;
    (*

    The evaluated compliance resource ID. Config accepts only Amazon Web Services account ID.

    *)
  3. complianceType : ComplianceType.t;
    (*

    The compliance of the Amazon Web Services resource. The valid values are COMPLIANT, NON_COMPLIANT, and NOT_APPLICABLE.

    *)
  4. annotation : StringWithCharLimit256.t option;
    (*

    Supplementary information about the reason of compliance. For example, this task was completed on a specific date.

    *)
  5. orderingTimestamp : OrderingTimestamp.t;
    (*

    The time when the compliance was recorded.

    *)
}
Sourceval context_ : string
Sourceval make : ?annotation:??? -> complianceResourceType:StringWithCharLimit256.t -> complianceResourceId:BaseResourceId.t -> complianceType:ComplianceType.t -> orderingTimestamp:OrderingTimestamp.t -> unit -> t
Sourceval to_value : t -> [> `Structure of (string * [> `Enum of string | `String of StringWithCharLimit256.t | `Timestamp of OrderingTimestamp.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