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

DescribeFleetResponse

import type { DescribeFleetResponse } from "https://aws-api.deno.dev/v0.4/services/robomaker.ts?docs=full";
interface DescribeFleetResponse {
arn?: string | null;
createdAt?: Date | number | null;
lastDeploymentJob?: string | null;
lastDeploymentStatus?: DeploymentStatus | null;
lastDeploymentTime?: Date | number | null;
name?: string | null;
robots?: Robot[] | null;
tags?: {
[key: string]: string | null | undefined;
}
| null;
}

§Properties

§
arn?: string | null
[src]

The Amazon Resource Name (ARN) of the fleet.

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

The time, in milliseconds since the epoch, when the fleet was created.

§
lastDeploymentJob?: string | null
[src]

The Amazon Resource Name (ARN) of the last deployment job.

§
lastDeploymentStatus?: DeploymentStatus | null
[src]

The status of the last deployment.

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

The time of the last deployment.

§
name?: string | null
[src]

The name of the fleet.

§
robots?: Robot[] | null
[src]

A list of robots.

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

The list of all tags added to the specified fleet.