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

CreateDeploymentRequest

import type { CreateDeploymentRequest } from "https://aws-api.deno.dev/v0.3/services/opsworks.ts?docs=full";
interface CreateDeploymentRequest {
AppId?: string | null;
Comment?: string | null;
CustomJson?: string | null;
InstanceIds?: string[] | null;
LayerIds?: string[] | null;
StackId: string;
}

§Properties

§
AppId?: string | null
[src]

The app ID. This parameter is required for app deployments, but not for other deployment commands.

§

A DeploymentCommand object that specifies the deployment command and any associated arguments.

§
Comment?: string | null
[src]

A user-defined comment.

§
CustomJson?: string | null
[src]

A string that contains user-defined, custom JSON. You can use this parameter to override some corresponding default stack configuration JSON values. The string should be in the following format:

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

For more information about custom JSON, see Use Custom JSON to Modify the Stack Configuration Attributes and Overriding Attributes With Custom JSON.

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

The instance IDs for the deployment targets.

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

The layer IDs for the deployment targets.

§
StackId: string
[src]

The stack ID.