Module Values.EksClusterSource

Contains information about the Amazon EKS cluster involved in a GuardDuty finding, including cluster identification, status, and network configuration.

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

    The Amazon Resource Name (ARN) that uniquely identifies the Amazon EKS cluster involved in the finding.

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

    The timestamp indicating when the Amazon EKS cluster was created, in UTC format.

    *)
  3. status : ClusterStatus.t option;
    (*

    The current status of the Amazon EKS cluster.

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

    The ID of the Amazon Virtual Private Cloud (Amazon VPC) associated with the Amazon EKS cluster.

    *)
  5. ec2InstanceUids : Ec2InstanceUids.t option;
    (*

    A list of unique identifiers for the Amazon EC2 instances that serve as worker nodes in the Amazon EKS cluster.

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