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

UpdateTaintsPayload

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

An object representing the details of an update to a taints payload.

interface UpdateTaintsPayload {
addOrUpdateTaints?: Taint[] | null;
removeTaints?: Taint[] | null;
}

§Properties

§
addOrUpdateTaints?: Taint[] | null
[src]

Kubernetes taints to be added or updated.

§
removeTaints?: Taint[] | null
[src]

Kubernetes taints to be removed.