Module Values.LogDeliveryConfigurationRequestSource

Specifies the destination, format and type of the logs.

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

    Refers to slow-log or engine-log..

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

    Specify either cloudwatch-logs or kinesis-firehose as the destination type.

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

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

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

    Specifies either JSON or TEXT

    *)
  5. enabled : BooleanOptional.t option;
    (*

    Specify if log delivery is enabled. Default true.

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