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

RollbackInfo

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

Information about a deployment rollback.

interface RollbackInfo {
rollbackDeploymentId?: string | null;
rollbackMessage?: string | null;
rollbackTriggeringDeploymentId?: string | null;
}

§Properties

§
rollbackDeploymentId?: string | null
[src]

The ID of the deployment rollback.

§
rollbackMessage?: string | null
[src]

Information that describes the status of a deployment rollback (for example, whether the deployment can't be rolled back, is in progress, failed, or succeeded).

§
rollbackTriggeringDeploymentId?: string | null
[src]

The deployment ID of the deployment that was underway and triggered a rollback deployment because it failed or was stopped.