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

GetVehicleResponse

import type { GetVehicleResponse } from "https://aws-api.deno.dev/v0.4/services/iotfleetwise.ts?docs=full";
interface GetVehicleResponse {
arn?: string | null;
attributes?: {
[key: string]: string | null | undefined;
}
| null;
creationTime?: Date | number | null;
decoderManifestArn?: string | null;
lastModificationTime?: Date | number | null;
modelManifestArn?: string | null;
vehicleName?: string | null;
}

§Properties

§
arn?: string | null
[src]

The Amazon Resource Name (ARN) of the vehicle to retrieve information about.

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

Static information about a vehicle in a key-value pair. For example:

"engineType" : "1.3 L R2"

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

The time the vehicle was created in seconds since epoch (January 1, 1970 at midnight UTC time).

§
decoderManifestArn?: string | null
[src]

The ARN of a decoder manifest associated with the vehicle.

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

The time the vehicle was last updated in seconds since epoch (January 1, 1970 at midnight UTC time).

§
modelManifestArn?: string | null
[src]

The ARN of a vehicle model (model manifest) associated with the vehicle.

§
vehicleName?: string | null
[src]

The ID of the vehicle.