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

CreateSimulationApplicationRequest

import type { CreateSimulationApplicationRequest } from "https://aws-api.deno.dev/v0.4/services/robomaker.ts?docs=full";
interface CreateSimulationApplicationRequest {
environment?: Environment | null;
name: string;
renderingEngine?: RenderingEngine | null;
robotSoftwareSuite: RobotSoftwareSuite;
simulationSoftwareSuite: SimulationSoftwareSuite;
sources?: SourceConfig[] | null;
tags?: {
[key: string]: string | null | undefined;
}
| null;
}

§Properties

§
environment?: Environment | null
[src]

The object that contains the Docker image URI used to create your simulation application.

§
name: string
[src]

The name of the simulation application.

§
renderingEngine?: RenderingEngine | null
[src]

The rendering engine for the simulation application.

§
robotSoftwareSuite: RobotSoftwareSuite
[src]

The robot software suite (ROS distribution) used by the simulation application.

§
simulationSoftwareSuite: SimulationSoftwareSuite
[src]

The simulation software suite used by the simulation application.

§
sources?: SourceConfig[] | null
[src]

The sources of the simulation application.

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

A map that contains tag keys and tag values that are attached to the simulation application.