Module Values.LogsSummarySource

The list of information about logs currently enabled and pending to be deployed for the specified broker.

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

    Enables audit logging. Every user management action made using JMX or the ActiveMQ Web Console is logged.

    *)
  2. auditLogGroup : string option;
    (*

    The location of the CloudWatch Logs log group where audit logs are sent.

    *)
  3. general : bool option;
    (*

    Enables general logging.

    *)
  4. generalLogGroup : string option;
    (*

    The location of the CloudWatch Logs log group where general logs are sent.

    *)
  5. pending : PendingLogs.t option;
    (*

    The list of information about logs pending to be deployed for the specified broker.

    *)
}
Sourceval make : ?audit:??? -> ?auditLogGroup:??? -> ?general:??? -> ?generalLogGroup:??? -> ?pending:??? -> unit -> t
Sourceval to_value : t -> [> `Structure of (string * [> `Boolean of bool | `String of string | `Structure of (string * [> `Boolean of bool ]) 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