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

DeploymentEvent

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

An object that describes a deployment event.

interface DeploymentEvent {
ActionInvocations?: ActionInvocation[] | null;
Description?: string | null;
EventType?: DeploymentEventType | null;
OccurredAt?: Date | number | null;
TriggeredBy?: TriggeredBy | null;
}

§Properties

§
ActionInvocations?: ActionInvocation[] | null
[src]

The list of extensions that were invoked as part of the deployment.

§
Description?: string | null
[src]

A description of the deployment event. Descriptions include, but are not limited to, the user account or the Amazon CloudWatch alarm ARN that initiated a rollback, the percentage of hosts that received the deployment, or in the case of an internal error, a recommendation to attempt a new deployment.

§
EventType?: DeploymentEventType | null
[src]

The type of deployment event. Deployment event types include the start, stop, or completion of a deployment; a percentage update; the start or stop of a bake period; and the start or completion of a rollback.

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

The date and time the event occurred.

§
TriggeredBy?: TriggeredBy | null
[src]

The entity that triggered the deployment event. Events can be triggered by a user, AppConfig, an Amazon CloudWatch alarm, or an internal error.