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

Update

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

An object representing an asynchronous update.

interface Update {
createdAt?: Date | number | null;
errors?: ErrorDetail[] | null;
id?: string | null;
params?: UpdateParam[] | null;
status?: UpdateStatus | null;
type?: UpdateType | null;
}

§Properties

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

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

§
errors?: ErrorDetail[] | null
[src]

Any errors associated with a Failed update.

§
id?: string | null
[src]

A UUID that is used to track the update.

§
params?: UpdateParam[] | null
[src]

A key-value map that contains the parameters associated with the update.

§
status?: UpdateStatus | null
[src]

The current status of the update.

§
type?: UpdateType | null
[src]

The type of the update.