Module Values.LogSetupSource

An object representing the enabled or disabled Kubernetes control plane logs for your cluster.

Sourcetype nonrec t = {
  1. types : LogTypes.t option;
    (*

    The available cluster control plane log types.

    *)
  2. enabled : BoxedBoolean.t option;
    (*

    If a log type is enabled, that log type exports its control plane logs to CloudWatch Logs . If a log type isn't enabled, that log type doesn't export its control plane logs. Each individual log type can be enabled or disabled independently.

    *)
}
Sourceval make : ?types:??? -> ?enabled:??? -> unit -> t
Sourceval to_value : t -> [> `Structure of (string * [> `Boolean of BoxedBoolean.t | `List of [> `Enum of string ] 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