import type * as iotfleetwise from "@distilled.cloud/aws/iotfleetwise"; import type * as Effect from "effect/Effect"; import * as Binding from "../../Binding.ts"; /** * Runtime binding for the `ListVehicles` operation (IAM action * `iotfleetwise:ListVehicles`), account-level. * * Lists the vehicles in the account, optionally filtered by model * manifest or attribute values. Provide the implementation with * `Effect.provide(AWS.IoTFleetWise.ListVehiclesHttp)`. * * ### Provisioning Vehicles * **Example:** List Vehicles by Attribute * ```typescript * const listVehicles = yield* IoTFleetWise.ListVehicles(); * * const { vehicleSummaries } = yield* listVehicles({ * attributeNames: ["Vehicle.Color"], * attributeValues: ["red"], * }); * ``` * * @binding */ export interface ListVehicles extends Binding.Service Effect.Effect<(request?: iotfleetwise.ListVehiclesRequest) => Effect.Effect>> { } export declare const ListVehicles: ListVehicles; //# sourceMappingURL=ListVehicles.d.ts.map