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

Cluster

import type { Cluster } from "https://aws-api.deno.dev/v0.3/services/eks.ts?docs=full";

An object representing an Amazon EKS cluster.

interface Cluster {
arn?: string | null;
certificateAuthority?: Certificate | null;
clientRequestToken?: string | null;
connectorConfig?: ConnectorConfigResponse | null;
createdAt?: Date | number | null;
encryptionConfig?: EncryptionConfig[] | null;
endpoint?: string | null;
identity?: Identity | null;
kubernetesNetworkConfig?: KubernetesNetworkConfigResponse | null;
logging?: Logging | null;
name?: string | null;
platformVersion?: string | null;
resourcesVpcConfig?: VpcConfigResponse | null;
roleArn?: string | null;
status?: ClusterStatus | null;
tags?: {
[key: string]: string | null | undefined;
}
| null;
version?: string | null;
}

§Properties

§
arn?: string | null
[src]

The Amazon Resource Name (ARN) of the cluster.

§
certificateAuthority?: Certificate | null
[src]

The certificate-authority-data for your cluster.

§
clientRequestToken?: string | null
[src]

Unique, case-sensitive identifier that you provide to ensure the idempotency of the request.

§
connectorConfig?: ConnectorConfigResponse | null
[src]

The configuration used to connect to a cluster for registration.

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

The Unix epoch timestamp in seconds for when the cluster was created.

§
encryptionConfig?: EncryptionConfig[] | null
[src]

The encryption configuration for the cluster.

§
endpoint?: string | null
[src]

The endpoint for your Kubernetes API server.

§
identity?: Identity | null
[src]

The identity provider information for the cluster.

§
kubernetesNetworkConfig?: KubernetesNetworkConfigResponse | null
[src]

The Kubernetes network configuration for the cluster.

§
logging?: Logging | null
[src]

The logging configuration for your cluster.

§
name?: string | null
[src]

The name of the cluster.

§
platformVersion?: string | null
[src]

The platform version of your Amazon EKS cluster. For more information, see Platform Versions in the Amazon EKS User Guide.

§
resourcesVpcConfig?: VpcConfigResponse | null
[src]

The VPC configuration used by the cluster control plane. Amazon EKS VPC resources have specific requirements to work properly with Kubernetes. For more information, see Cluster VPC Considerations and Cluster Security Group Considerations in the Amazon EKS User Guide.

§
roleArn?: string | null
[src]

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

§
status?: ClusterStatus | null
[src]

The current status of the cluster.

§
tags?: {
[key: string]: string | null | undefined;
}
| null
[src]

The metadata that you apply to the cluster to assist with categorization and organization. Each tag consists of a key and an optional value. You define both. Cluster tags do not propagate to any other resources associated with the cluster.

§
version?: string | null
[src]

The Kubernetes server version for the cluster.