Module Values.CreateCapabilityRequestSource

Creates a managed capability resource for an Amazon EKS cluster. Capabilities provide fully managed capabilities to build and scale with Kubernetes. When you create a capability, Amazon EKSprovisions and manages the infrastructure required to run the capability outside of your cluster. This approach reduces operational overhead and preserves cluster resources. You can only create one Capability of each type on a given Amazon EKS cluster. Valid types are Argo CD for declarative GitOps deployment, Amazon Web Services Controllers for Kubernetes (ACK) for resource management, and Kube Resource Orchestrator (KRO) for Kubernetes custom resource orchestration. For more information, see EKS Capabilities in the Amazon EKS User Guide.

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

    A unique name for the capability. The name must be unique within your cluster and can contain alphanumeric characters, hyphens, and underscores.

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

    The name of the Amazon EKS cluster where you want to create the capability.

    *)
  3. 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. If you retry a request with the same client request token and the same parameters after the original request has completed successfully, the result of the original request is returned.

    *)
  4. type_ : CapabilityType.t;
    (*

    The type of capability to create. Valid values are: ACK – Amazon Web Services Controllers for Kubernetes (ACK), which lets you manage resources directly from Kubernetes. ARGOCD – Argo CD for GitOps-based continuous delivery. KRO – Kube Resource Orchestrator (KRO) for composing and managing custom Kubernetes resources.

    *)
  5. roleArn : String_.t;
    (*

    The Amazon Resource Name (ARN) of the IAM role that the capability uses to interact with Amazon Web Services services. This role must have a trust policy that allows the EKS service principal to assume it, and it must have the necessary permissions for the capability type you're creating. For ACK capabilities, the role needs permissions to manage the resources you want to control through Kubernetes. For Argo CD capabilities, the role needs permissions to access Git repositories and Secrets Manager. For KRO capabilities, the role needs permissions based on the resources you'll be orchestrating.

    *)
  6. configuration : CapabilityConfigurationRequest.t option;
    (*

    The configuration settings for the capability. The structure of this object varies depending on the capability type. For Argo CD capabilities, you can configure IAM Identity CenterIAM; Identity Center integration, RBAC role mappings, and network access settings.

    *)
  7. tags : TagMap.t option;
  8. deletePropagationPolicy : CapabilityDeletePropagationPolicy.t;
    (*

    Specifies how Kubernetes resources managed by the capability should be handled when the capability is deleted. Currently, the only supported value is RETAIN which retains all Kubernetes resources managed by the capability when the capability is deleted. Because resources are retained, all Kubernetes resources created by the capability should be deleted from the cluster before deleting the capability itself. After the capability is deleted, these resources become difficult to manage because the controller is no longer available.

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