Module Values.PendingCloudwatchLogsExportsSource

A list of the log types whose configuration is still pending. These log types are in the process of being activated or deactivated.

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

    Log types that are in the process of being deactivated. After they are deactivated, these log types aren't exported to CloudWatch Logs.

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

    Log types that are in the process of being enabled. After they are enabled, these log types are exported to Amazon CloudWatch Logs.

    *)
}
Sourceval make : ?logTypesToEnable:??? -> ?logTypesToDisable:??? -> 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