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

DescribeRobotApplicationResponse

import type { DescribeRobotApplicationResponse } from "https://aws-api.deno.dev/v0.4/services/robomaker.ts?docs=full";
interface DescribeRobotApplicationResponse {
arn?: string | null;
environment?: Environment | null;
imageDigest?: string | null;
lastUpdatedAt?: Date | number | null;
name?: string | null;
revisionId?: string | null;
robotSoftwareSuite?: RobotSoftwareSuite | null;
sources?: Source[] | null;
tags?: {
[key: string]: string | null | undefined;
}
| null;
version?: string | null;
}

§Properties

§
arn?: string | null
[src]

The Amazon Resource Name (ARN) of the robot application.

§
environment?: Environment | null
[src]

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

§
imageDigest?: string | null
[src]

A SHA256 identifier for the Docker image that you use for your robot application.

§
lastUpdatedAt?: Date | number | null
[src]

The time, in milliseconds since the epoch, when the robot application was last updated.

§
name?: string | null
[src]

The name of the robot application.

§
revisionId?: string | null
[src]

The revision id of the robot application.

§
robotSoftwareSuite?: RobotSoftwareSuite | null
[src]

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

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

The sources of the robot application.

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

The list of all tags added to the specified robot application.

§
version?: string | null
[src]

The version of the robot application.