Module Values.ComplianceByResourceSource

Indicates whether an Amazon Web Services resource that is evaluated according to one or more Config rules is compliant. A resource is compliant if it complies with all of the rules that evaluate it. A resource is noncompliant if it does not comply with one or more of these rules.

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

    The type of the Amazon Web Services resource that was evaluated.

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

    The ID of the Amazon Web Services resource that was evaluated.

    *)
  3. compliance : Compliance.t option;
    (*

    Indicates whether the Amazon Web Services resource complies with all of the Config rules that evaluated it.

    *)
}
Sourceval make : ?resourceType:??? -> ?resourceId:??? -> ?compliance:??? -> unit -> t
Sourceval to_value : t -> [> `Structure of (string * [> `String of StringWithCharLimit256.t | `Structure of (string * [> `Enum of string | `Structure of (string * [> `Boolean of Boolean.t | `Integer of Integer.t ]) list ]) list ]) 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