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

UpdateVehicleRequest

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

§Properties

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

§
attributeUpdateMode?: UpdateMode | null
[src]

The method the specified attributes will update the existing attributes on the vehicle. UseOverwite to replace the vehicle attributes with the specified attributes. Or use Merge to combine all attributes.

This is required if attributes are present in the input.

§
decoderManifestArn?: string | null
[src]

The ARN of the decoder manifest associated with this vehicle.

§
modelManifestArn?: string | null
[src]

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

§
vehicleName: string
[src]

The unique ID of the vehicle to update.