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

CreateRobotApplicationRequest

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

§Properties

§
environment?: Environment | null
[src]

The object that contains that URI of the Docker image that you use for your robot application.

§
name: string
[src]

The name of the robot application.

§
robotSoftwareSuite: RobotSoftwareSuite
[src]

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

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

The sources of the robot application.

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

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