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

Deployment

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

Describes a deployment of a stack or app.

interface Deployment {
AppId?: string | null;
Command?: DeploymentCommand | null;
Comment?: string | null;
CompletedAt?: string | null;
CreatedAt?: string | null;
CustomJson?: string | null;
DeploymentId?: string | null;
Duration?: number | null;
IamUserArn?: string | null;
InstanceIds?: string[] | null;
StackId?: string | null;
Status?: string | null;
}

§Properties

§
AppId?: string | null
[src]

The app ID.

§
Command?: DeploymentCommand | null
[src]

Used to specify a stack or deployment command.

§
Comment?: string | null
[src]

A user-defined comment.

§
CompletedAt?: string | null
[src]

Date when the deployment completed.

§
CreatedAt?: string | null
[src]

Date when the deployment was created.

§
CustomJson?: string | null
[src]

A string that contains user-defined custom JSON. It can be used to override the corresponding default stack configuration attribute values for stack or to pass data to recipes. The string should be in the following format:

"{\"key1\": \"value1\", \"key2\": \"value2\",...}"

For more information on custom JSON, see Use Custom JSON to Modify the Stack Configuration Attributes.

§
DeploymentId?: string | null
[src]

The deployment ID.

§
Duration?: number | null
[src]

The deployment duration.

§
IamUserArn?: string | null
[src]

The user's IAM ARN.

§
InstanceIds?: string[] | null
[src]

The IDs of the target instances.

§
StackId?: string | null
[src]

The stack ID.

§
Status?: string | null
[src]

The deployment status:

  • running
  • successful
  • failed