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

DeploymentLaunchConfig

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

Configuration information for a deployment launch.

interface DeploymentLaunchConfig {
environmentVariables?: {
[key: string]: string | null | undefined;
}
| null;
launchFile: string;
packageName: string;
postLaunchFile?: string | null;
preLaunchFile?: string | null;
}

§Properties

§
environmentVariables?: {
[key: string]: string | null | undefined;
}
| null
[src]

An array of key/value pairs specifying environment variables for the robot application

§
launchFile: string
[src]

The launch file name.

§
packageName: string
[src]

The package name.

§
postLaunchFile?: string | null
[src]

The deployment post-launch file. This file will be executed after the launch file.

§
preLaunchFile?: string | null
[src]

The deployment pre-launch file. This file will be executed prior to the launch file.