Module Values.EksConfigurationSource

The EksConfiguration structure describes the connection to the Amazon EKS cluster from which a scraper collects metrics.

Sourcetype nonrec t = {
  1. clusterArn : ClusterArn.t;
    (*

    ARN of the Amazon EKS cluster.

    *)
  2. securityGroupIds : SecurityGroupIds.t option;
    (*

    A list of the security group IDs for the Amazon EKS cluster VPC configuration.

    *)
  3. subnetIds : SubnetIds.t;
    (*

    A list of subnet IDs for the Amazon EKS cluster VPC configuration.

    *)
}
Sourceval context_ : string
Sourceval make : ?securityGroupIds:??? -> clusterArn:ClusterArn.t -> subnetIds:SubnetIds.t -> unit -> t
Sourceval to_value : t -> [> `Structure of (string * [> `List of [> `String of SecurityGroupId.t ] list | `String of ClusterArn.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