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

EksClusterDetails

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

Details about the EKS cluster involved in a Kubernetes finding.

interface EksClusterDetails {
Arn?: string | null;
CreatedAt?: Date | number | null;
Name?: string | null;
Status?: string | null;
Tags?: Tag[] | null;
VpcId?: string | null;
}

§Properties

§
Arn?: string | null
[src]

EKS cluster ARN.

§
CreatedAt?: Date | number | null
[src]

The timestamp when the EKS cluster was created.

§
Name?: string | null
[src]

EKS cluster name.

§
Status?: string | null
[src]

The EKS cluster status.

§
Tags?: Tag[] | null
[src]

The EKS cluster tags.

§
VpcId?: string | null
[src]

The VPC ID to which the EKS cluster is attached.