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

LaunchConfig

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

Information about a launch configuration.

interface LaunchConfig {
command?: string[] | null;
environmentVariables?: {
[key: string]: string | null | undefined;
}
| null;
launchFile?: string | null;
packageName?: string | null;
portForwardingConfig?: PortForwardingConfig | null;
streamUI?: boolean | null;
}

§Properties

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

If you've specified General as the value for your RobotSoftwareSuite, you can use this field to specify a list of commands for your container image.

If you've specified SimulationRuntime as the value for your SimulationSoftwareSuite, you can use this field to specify a list of commands for your container image.

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

The environment variables for the application launch.

§
launchFile?: string | null
[src]

The launch file name.

§
packageName?: string | null
[src]

The package name.

§
portForwardingConfig?: PortForwardingConfig | null
[src]

The port forwarding configuration.

§
streamUI?: boolean | null
[src]

Boolean indicating whether a streaming session will be configured for the application. If True, AWS RoboMaker will configure a connection so you can interact with your application as it is running in the simulation. You must configure and launch the component. It must have a graphical user interface.