Module Values.KubernetesWorkloadSource

Contains information about Kubernetes workloads involved in a GuardDuty finding, including pods, deployments, and other Kubernetes resources.

Sourcetype nonrec t = {
  1. containerUids : ContainerUids.t option;
    (*

    A list of unique identifiers for the containers that are part of the Kubernetes workload.

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

    The Kubernetes namespace in which the workload is running, providing logical isolation within the cluster.

    *)
  3. kubernetesResourcesTypes : KubernetesResourcesTypes.t option;
    (*

    The types of Kubernetes resources involved in the workload.

    *)
}
Sourceval make : ?containerUids:??? -> ?namespace:??? -> ?kubernetesResourcesTypes:??? -> unit -> t
Sourceval to_value : t -> [> `Structure of (string * [> `Enum of string | `List of [> `String of ContainerUid.t ] list | `String of String_.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