Skip to content

DescribeClusterVersions

Source: src/AWS/EKS/DescribeClusterVersions.ts

Runtime binding for eks:DescribeClusterVersions.

Reads the Kubernetes version catalog — which versions EKS currently offers, their support status, and end-of-support dates. eks:DescribeClusterVersions is granted on * — the operation is account-scoped and takes no resource. Provide the implementation with Effect.provide(AWS.EKS.DescribeClusterVersionsHttp).

// init
const describeClusterVersions = yield* AWS.EKS.DescribeClusterVersions();
// runtime
const { clusterVersions } = yield* describeClusterVersions({
defaultOnly: true,
});