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

AwsEksClusterDetails

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

Provides details about an Amazon EKS cluster.

interface AwsEksClusterDetails {
Arn?: string | null;
CertificateAuthorityData?: string | null;
ClusterStatus?: string | null;
Endpoint?: string | null;
Logging?: AwsEksClusterLoggingDetails | null;
Name?: string | null;
ResourcesVpcConfig?: AwsEksClusterResourcesVpcConfigDetails | null;
RoleArn?: string | null;
Version?: string | null;
}

§Properties

§
Arn?: string | null
[src]

The ARN of the cluster.

§
CertificateAuthorityData?: string | null
[src]

The certificate authority data for the cluster.

§
ClusterStatus?: string | null
[src]

The status of the cluster. Valid values are as follows:

  • ACTIVE
    
  • CREATING
    
  • DELETING
    
  • FAILED
    
  • PENDING
    
  • UPDATING
    
§
Endpoint?: string | null
[src]

The endpoint for the Amazon EKS API server.

§

The logging configuration for the cluster.

§
Name?: string | null
[src]

The name of the cluster.

§

The VPC configuration used by the cluster control plane.

§
RoleArn?: string | null
[src]

The ARN of the IAM role that provides permissions for the Amazon EKS control plane to make calls to Amazon Web Services API operations on your behalf.

§
Version?: string | null
[src]

The Amazon EKS server version for the cluster.