Module Values.EksClusterDetailsSource

Details about the EKS cluster involved in a Kubernetes finding.

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

    EKS cluster name.

    *)
  2. arn : String_.t option;
    (*

    EKS cluster ARN.

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

    The VPC ID to which the EKS cluster is attached.

    *)
  4. status : String_.t option;
    (*

    The EKS cluster status.

    *)
  5. tags : Tags.t option;
    (*

    The EKS cluster tags.

    *)
  6. createdAt : Timestamp.t option;
    (*

    The timestamp when the EKS cluster was created.

    *)
}
Sourceval make : ?name:??? -> ?arn:??? -> ?vpcId:??? -> ?status:??? -> ?tags:??? -> ?createdAt:??? -> unit -> t
Sourceval to_value : t -> [> `Structure of (string * [> `List of [> `Structure of (string * [> `String of String_.t ]) list ] list | `String of String_.t | `Timestamp of Timestamp.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