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

CreateVehicleRequest

import type { CreateVehicleRequest } from "https://aws-api.deno.dev/v0.4/services/iotfleetwise.ts?docs=full";
interface CreateVehicleRequest {
associationBehavior?: VehicleAssociationBehavior | null;
attributes?: {
[key: string]: string | null | undefined;
}
| null;
decoderManifestArn: string;
modelManifestArn: string;
tags?: Tag[] | null;
vehicleName: string;
}

§Properties

§
associationBehavior?: VehicleAssociationBehavior | null
[src]

An option to create a new Amazon Web Services IoT thing when creating a vehicle, or to validate an existing Amazon Web Services IoT thing as a vehicle.

Default: ``

§
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"

§
decoderManifestArn: string
[src]

The ARN of a decoder manifest.

§
modelManifestArn: string
[src]

The Amazon Resource Name ARN of a vehicle model.

§
tags?: Tag[] | null
[src]

Metadata that can be used to manage the vehicle.

§
vehicleName: string
[src]

The unique ID of the vehicle to create.