Module Values.AwsAmazonMqBrokerLogsPendingDetailsSource

Provides information about logs to be activated for the specified broker.

Sourcetype nonrec t = {
  1. audit : Boolean.t option;
    (*

    Activates audit logging. Every user management action made using JMX or the ActiveMQ Web Console is logged. Doesn't apply to RabbitMQ brokers.

    *)
  2. general : Boolean.t option;
    (*

    Activates general logging.

    *)
}
Sourceval make : ?audit:??? -> ?general:??? -> unit -> t
Sourceval to_value : t -> [> `Structure of (string * [> `Boolean of Boolean.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