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

ManagedActionHistoryItem

import type { ManagedActionHistoryItem } from "https://aws-api.deno.dev/v0.4/services/elasticbeanstalk.ts?docs=full";

The record of a completed or failed managed action.

interface ManagedActionHistoryItem {
ActionDescription?: string | null;
ActionId?: string | null;
ActionType?: ActionType | null;
ExecutedTime?: Date | number | null;
FailureDescription?: string | null;
FailureType?: FailureType | null;
FinishedTime?: Date | number | null;
Status?: ActionHistoryStatus | null;
}

§Properties

§
ActionDescription?: string | null
[src]

A description of the managed action.

§
ActionId?: string | null
[src]

A unique identifier for the managed action.

§
ActionType?: ActionType | null
[src]

The type of the managed action.

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

The date and time that the action started executing.

§
FailureDescription?: string | null
[src]

If the action failed, a description of the failure.

§
FailureType?: FailureType | null
[src]

If the action failed, the type of failure.

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

The date and time that the action finished executing.

§
Status?: ActionHistoryStatus | null
[src]

The status of the action.