Module Values.RegisterClusterRequestSource

Connects a Kubernetes cluster to the Amazon EKS control plane. Any Kubernetes cluster can be connected to the Amazon EKS control plane to view current information about the cluster and its nodes. Cluster connection requires two steps. First, send a RegisterClusterRequest to add it to the Amazon EKS control plane. Second, a Manifest containing the activationID and activationCode must be applied to the Kubernetes cluster through it's native provider to provide visibility. After the manifest is updated and applied, the connected cluster is visible to the Amazon EKS control plane. If the manifest isn't applied within three days, the connected cluster will no longer be visible and must be deregistered using DeregisterCluster.

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

    A unique name for this cluster in your Amazon Web Services Region.

    *)
  2. connectorConfig : ConnectorConfigRequest.t;
    (*

    The configuration settings required to connect the Kubernetes cluster to the Amazon EKS control plane.

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

    A unique, case-sensitive identifier that you provide to ensure the idempotency of the request.

    *)
  4. tags : TagMap.t option;
    (*

    Metadata that assists with categorization and organization. Each tag consists of a key and an optional value. You define both. Tags don't propagate to any other cluster or Amazon Web Services resources.

    *)
}
Sourceval context_ : string
Sourceval make : ?clientRequestToken:??? -> ?tags:??? -> name:ClusterName.t -> connectorConfig:ConnectorConfigRequest.t -> unit -> t
Sourceval to_value : t -> [> `Structure of (string * [> `Map of ([> `String of TagKey.t ] * [> `String of TagValue.t ]) list | `String of ClusterName.t | `Structure of (string * [> `Enum of string | `String of String_.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