Module Values.CoverageEksClusterDetailsSource

Information about the EKS cluster that has a coverage status.

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

    Name of the EKS cluster.

    *)
  2. coveredNodes : Long.t option;
    (*

    Represents the nodes within the EKS cluster that have a HEALTHY coverage status.

    *)
  3. compatibleNodes : Long.t option;
    (*

    Represents all the nodes within the EKS cluster in your account.

    *)
  4. addonDetails : AddonDetails.t option;
    (*

    Information about the installed EKS add-on.

    *)
  5. managementType : ManagementType.t option;
    (*

    Indicates how the Amazon EKS add-on GuardDuty agent is managed for this EKS cluster. AUTO_MANAGED indicates GuardDuty deploys and manages updates for this resource. MANUAL indicates that you are responsible to deploy, update, and manage the Amazon EKS add-on GuardDuty agent for this resource.

    *)
}
Sourceval make : ?clusterName:??? -> ?coveredNodes:??? -> ?compatibleNodes:??? -> ?addonDetails:??? -> ?managementType:??? -> unit -> t
Sourceval to_value : t -> [> `Structure of (string * [> `Enum of string | `Long of Long.t | `String of String_.t | `Structure 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