Module Values.UpdateCapabilityRequestSource

Updates the configuration of a managed capability in your Amazon EKS cluster. You can update the IAM role, configuration settings, and delete propagation policy for a capability. When you update a capability, Amazon EKS applies the changes and may restart capability components as needed. The capability remains available during the update process, but some operations may be temporarily unavailable.

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

    The name of the Amazon EKS cluster that contains the capability you want to update configuration for.

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

    The name of the capability to update configuration for.

    *)
  3. roleArn : String_.t option;
    (*

    The Amazon Resource Name (ARN) of the IAM role that the capability uses to interact with Amazon Web Services services. If you specify a new role ARN, the capability will start using the new role for all subsequent operations.

    *)
  4. configuration : UpdateCapabilityConfiguration.t option;
    (*

    The updated configuration settings for the capability. You only need to specify the configuration parameters you want to change. For Argo CD capabilities, you can update RBAC role mappings and network access settings.

    *)
  5. clientRequestToken : String_.t option;
    (*

    A unique, case-sensitive identifier that you provide to ensure the idempotency of the request. This token is valid for 24 hours after creation.

    *)
  6. deletePropagationPolicy : CapabilityDeletePropagationPolicy.t option;
    (*

    The updated delete propagation policy for the capability. Currently, the only supported value is RETAIN.

    *)
}
Sourceval context_ : string
Sourceval make : ?roleArn:??? -> ?configuration:??? -> ?clientRequestToken:??? -> ?deletePropagationPolicy:??? -> clusterName:String_.t -> capabilityName:String_.t -> unit -> t
Sourceval to_value : t -> [> `Structure of (string * [> `Enum of string | `String of String_.t | `Structure of (string * [> `Structure of (string * [> `Structure of (string * [> `List of [> `String of String_.t | `Structure of (string * [> `Enum of string | `List of [> `Structure of (string * [> `Enum of string | `String of String_.t ]) list ] list ]) list ] list ]) list ]) 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