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

UpdateLabelsPayload

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

An object representing a Kubernetes label change for a managed node group.

interface UpdateLabelsPayload {
addOrUpdateLabels?: {
[key: string]: string | null | undefined;
}
| null;
removeLabels?: string[] | null;
}

§Properties

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

Kubernetes labels to be added or updated.

§
removeLabels?: string[] | null
[src]

Kubernetes labels to be removed.