Hi there! Are you looking for the official Deno documentation? Try docs.deno.com for all your Deno learning needs.

KubernetesWorkloadDetails

import type { KubernetesWorkloadDetails } from "https://aws-api.deno.dev/v0.4/services/guardduty.ts?docs=full";

Details about the Kubernetes workload involved in a Kubernetes finding.

interface KubernetesWorkloadDetails {
Containers?: Container[] | null;
HostNetwork?: boolean | null;
Name?: string | null;
Namespace?: string | null;
Type?: string | null;
Uid?: string | null;
Volumes?: Volume[] | null;
}

§Properties

§
Containers?: Container[] | null
[src]

Containers running as part of the Kubernetes workload.

§
HostNetwork?: boolean | null
[src]

Whether the hostNetwork flag is enabled for the pods included in the workload.

§
Name?: string | null
[src]

Kubernetes workload name.

§
Namespace?: string | null
[src]

Kubernetes namespace that the workload is part of.

§
Type?: string | null
[src]

Kubernetes workload type (e.g. Pod, Deployment, etc.).

§
Uid?: string | null
[src]

Kubernetes workload ID.

§
Volumes?: Volume[] | null
[src]

Volumes used by the Kubernetes workload.