Module Values.AwsEksClusterLoggingClusterLoggingDetailsSource

Details for a cluster logging configuration.

Sourcetype nonrec t = {
  1. enabled : Boolean.t option;
    (*

    Whether the logging types that are listed in Types are enabled.

    *)
  2. types : NonEmptyStringList.t option;
    (*

    A list of logging types. Valid values are as follows: api audit authenticator controllerManager scheduler

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