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

Addon

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

An Amazon EKS add-on. For more information, see Amazon EKS add-ons in the Amazon EKS User Guide.

interface Addon {
addonArn?: string | null;
addonName?: string | null;
addonVersion?: string | null;
clusterName?: string | null;
createdAt?: Date | number | null;
health?: AddonHealth | null;
modifiedAt?: Date | number | null;
serviceAccountRoleArn?: string | null;
status?: AddonStatus | null;
tags?: {
[key: string]: string | null | undefined;
}
| null;
}

§Properties

§
addonArn?: string | null
[src]

The Amazon Resource Name (ARN) of the add-on.

§
addonName?: string | null
[src]

The name of the add-on.

§
addonVersion?: string | null
[src]

The version of the add-on.

§
clusterName?: string | null
[src]

The name of the cluster.

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

The date and time that the add-on was created.

§
health?: AddonHealth | null
[src]

An object that represents the health of the add-on.

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

The date and time that the add-on was last modified.

§
serviceAccountRoleArn?: string | null
[src]

The Amazon Resource Name (ARN) of the IAM role that is bound to the Kubernetes service account used by the add-on.

§
status?: AddonStatus | null
[src]

The status of the add-on.

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

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