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

Command

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

Describes a command.

interface Command {
AcknowledgedAt?: string | null;
CommandId?: string | null;
CompletedAt?: string | null;
CreatedAt?: string | null;
DeploymentId?: string | null;
ExitCode?: number | null;
InstanceId?: string | null;
LogUrl?: string | null;
Status?: string | null;
Type?: string | null;
}

§Properties

§
AcknowledgedAt?: string | null
[src]

Date and time when the command was acknowledged.

§
CommandId?: string | null
[src]

The command ID.

§
CompletedAt?: string | null
[src]

Date when the command completed.

§
CreatedAt?: string | null
[src]

Date and time when the command was run.

§
DeploymentId?: string | null
[src]

The command deployment ID.

§
ExitCode?: number | null
[src]

The command exit code.

§
InstanceId?: string | null
[src]

The ID of the instance where the command was executed.

§
LogUrl?: string | null
[src]

The URL of the command log.

§
Status?: string | null
[src]

The command status:

  • failed
  • successful
  • skipped
  • pending
§
Type?: string | null
[src]

The command type:

  • configure
    
  • deploy
    
  • execute_recipes
    
  • install_dependencies
    
  • restart
    
  • rollback
    
  • setup
    
  • start
    
  • stop
    
  • undeploy
    
  • update_custom_cookbooks
    
  • update_dependencies