Module Values_0.AuditCheckConfigurationSource

Which audit checks are enabled and disabled for this account.

Sourcetype nonrec t = {
  1. enabled : Enabled.t option;
    (*

    True if this audit check is enabled for this account.

    *)
  2. configuration : CheckCustomConfiguration.t option;
    (*

    A structure containing the configName and corresponding configValue for configuring audit checks.

    *)
}
Sourceval make : ?enabled:??? -> ?configuration:??? -> unit -> t
Sourceval to_value : t -> [> `Structure of (string * [> `Boolean of Enabled.t | `Map of ([> `Enum of string ] * [> `String of ConfigValue.t ]) 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