Module Values.CloudwatchLogsExportConfigurationSource

The configuration setting for the log types to be enabled for export to CloudWatch Logs for a specific DB instance or DB cluster. The EnableLogTypes and DisableLogTypes arrays determine which logs will be exported (or not exported) to CloudWatch Logs. Valid log types are: audit (to publish audit logs) and slowquery (to publish slow-query logs). See Publishing Neptune logs to Amazon CloudWatch logs.

Sourcetype nonrec t = {
  1. enableLogTypes : LogTypeList.t option;
    (*

    The list of log types to enable.

    *)
  2. disableLogTypes : LogTypeList.t option;
    (*

    The list of log types to disable.

    *)
}
Sourceval make : ?enableLogTypes:??? -> ?disableLogTypes:??? -> unit -> t
Sourceval to_value : t -> [> `Structure of (string * [> `List of [> `String of String_.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