Module Values.UpdateTaintsPayloadSource

An object representing the details of an update to a taints payload. For more information, see Node taints on managed node groups in the Amazon EKS User Guide.

Sourcetype nonrec t = {
  1. addOrUpdateTaints : TaintsList.t option;
    (*

    Kubernetes taints to be added or updated.

    *)
  2. removeTaints : TaintsList.t option;
    (*

    Kubernetes taints to remove.

    *)
}
Sourceval make : ?addOrUpdateTaints:??? -> ?removeTaints:??? -> unit -> t
Sourceval to_value : t -> [> `Structure of (string * [> `List of [> `Structure of (string * [> `Enum of string | `String of TaintKey.t ]) list ] 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