Module Values.CloudwatchLogsExportConfigurationSource

The configuration setting for the log types to be enabled for export to Amazon CloudWatch Logs for a specific instance or cluster. The EnableLogTypes and DisableLogTypes arrays determine which logs are exported (or not exported) to CloudWatch Logs. The values within these arrays depend on the engine that is being used.

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