Module Values.AwsAmazonMqBrokerLogsDetailsSource

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.

    *)
  3. auditLogGroup : NonEmptyString.t option;
    (*

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

    *)
  4. generalLogGroup : NonEmptyString.t option;
    (*

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

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

    The list of information about logs that are to be turned on for the specified broker.

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