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

Diagnostics

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

Diagnostic information about executable scripts that are part of a deployment.

interface Diagnostics {
errorCode?: LifecycleErrorCode | null;
logTail?: string | null;
message?: string | null;
scriptName?: string | null;
}

§Properties

§
errorCode?: LifecycleErrorCode | null
[src]

The associated error code:

  • Success: The specified script ran.
  • ScriptMissing: The specified script was not found in the specified location.
  • ScriptNotExecutable: The specified script is not a recognized executable file type.
  • ScriptTimedOut: The specified script did not finish running in the specified time period.
  • ScriptFailed: The specified script failed to run as expected.
  • UnknownError: The specified script did not run for an unknown reason.
§
logTail?: string | null
[src]

The last portion of the diagnostic log.

If available, AWS CodeDeploy returns up to the last 4 KB of the diagnostic log.

§
message?: string | null
[src]

The message associated with the error.

§
scriptName?: string | null
[src]

The name of the script.