Module Values.PendingLogDeliveryConfigurationSource

The log delivery configurations being modified

Sourcetype nonrec t = {
  1. logType : LogType.t option;
    (*

    Refers to slow-log or engine-log..

    *)
  2. destinationType : DestinationType.t option;
    (*

    Returns the destination type, either CloudWatch Logs or Kinesis Data Firehose.

    *)
  3. destinationDetails : DestinationDetails.t option;
    (*

    Configuration details of either a CloudWatch Logs destination or Kinesis Data Firehose destination.

    *)
  4. logFormat : LogFormat.t option;
    (*

    Returns the log format, either JSON or TEXT

    *)
}
Sourceval make : ?logType:??? -> ?destinationType:??? -> ?destinationDetails:??? -> ?logFormat:??? -> unit -> t
Sourceval to_value : t -> [> `Structure of (string * [> `Enum of string | `Structure of (string * [> `Structure of (string * [> `String of String_.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