Module Values.DeleteAddonRequestSource

Deletes an Amazon EKS add-on. When you remove an add-on, it's deleted from the cluster. You can always manually start an add-on on the cluster using the Kubernetes API.

Sourcetype nonrec t = {
  1. clusterName : ClusterName.t;
    (*

    The name of your cluster.

    *)
  2. addonName : String_.t;
    (*

    The name of the add-on. The name must match one of the names returned by ListAddons .

    *)
  3. preserve : Boolean.t option;
    (*

    Specifying this option preserves the add-on software on your cluster but Amazon EKS stops managing any settings for the add-on. If an IAM account is associated with the add-on, it isn't removed.

    *)
}
Sourceval context_ : string
Sourceval make : ?preserve:??? -> clusterName:ClusterName.t -> addonName:String_.t -> unit -> t
Sourceval to_value : t -> [> `Structure of (string * [> `Boolean of Boolean.t | `String of ClusterName.t ]) 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