import type { MetadataBearer as __MetadataBearer } from "@smithy/types"; import type { ListVehiclesRequest, ListVehiclesResponse } from "../models/models_0"; /** * @public */ export type { __MetadataBearer }; /** * @public * * The input for {@link ListVehiclesCommand}. */ export interface ListVehiclesCommandInput extends ListVehiclesRequest { } /** * @public * * The output of {@link ListVehiclesCommand}. */ export interface ListVehiclesCommandOutput extends ListVehiclesResponse, __MetadataBearer { } declare const ListVehiclesCommand_base: { new (input: ListVehiclesCommandInput): import("@smithy/core/client").CommandImpl; new (...[input]: [] | [ListVehiclesCommandInput]): import("@smithy/core/client").CommandImpl; getEndpointParameterInstructions(): import("@smithy/types").EndpointParameterInstructions; }; /** *

Retrieves a list of summaries of created vehicles.

* *

This API operation uses pagination. Specify the nextToken parameter in the request to return more results.

*
* @example * Use a bare-bones client and the command you need to make an API call. * ```javascript * import { IoTFleetWiseClient, ListVehiclesCommand } from "@aws-sdk/client-iotfleetwise"; // ES Modules import * // const { IoTFleetWiseClient, ListVehiclesCommand } = require("@aws-sdk/client-iotfleetwise"); // CommonJS import * // import type { IoTFleetWiseClientConfig } from "@aws-sdk/client-iotfleetwise"; * const config = {}; // type is IoTFleetWiseClientConfig * const client = new IoTFleetWiseClient(config); * const input = { // ListVehiclesRequest * modelManifestArn: "STRING_VALUE", * attributeNames: [ // attributeNamesList * "STRING_VALUE", * ], * attributeValues: [ // attributeValuesList * "STRING_VALUE", * ], * nextToken: "STRING_VALUE", * maxResults: Number("int"), * listResponseScope: "METADATA_ONLY", * }; * const command = new ListVehiclesCommand(input); * const response = await client.send(command); * // { // ListVehiclesResponse * // vehicleSummaries: [ // vehicleSummaries * // { // VehicleSummary * // vehicleName: "STRING_VALUE", // required * // arn: "STRING_VALUE", // required * // modelManifestArn: "STRING_VALUE", // required * // decoderManifestArn: "STRING_VALUE", // required * // creationTime: new Date("TIMESTAMP"), // required * // lastModificationTime: new Date("TIMESTAMP"), // required * // attributes: { // attributesMap * // "": "STRING_VALUE", * // }, * // }, * // ], * // nextToken: "STRING_VALUE", * // }; * * ``` * * @param ListVehiclesCommandInput - {@link ListVehiclesCommandInput} * @returns {@link ListVehiclesCommandOutput} * @see {@link ListVehiclesCommandInput} for command's `input` shape. * @see {@link ListVehiclesCommandOutput} for command's `response` shape. * @see {@link IoTFleetWiseClientResolvedConfig | config} for IoTFleetWiseClient's `config` shape. * * @throws {@link AccessDeniedException} (client fault) *

You don't have sufficient permission to perform this action.

* * @throws {@link InternalServerException} (server fault) *

The request couldn't be completed because the server temporarily failed.

* * @throws {@link ThrottlingException} (client fault) *

The request couldn't be completed due to throttling.

* * @throws {@link ValidationException} (client fault) *

The input fails to satisfy the constraints specified by an Amazon Web Services service.

* * @throws {@link IoTFleetWiseServiceException} *

Base exception class for all service exceptions from IoTFleetWise service.

* * * @public */ export declare class ListVehiclesCommand extends ListVehiclesCommand_base { /** @internal type navigation helper, not in runtime. */ protected static __types: { api: { input: ListVehiclesRequest; output: ListVehiclesResponse; }; sdk: { input: ListVehiclesCommandInput; output: ListVehiclesCommandOutput; }; }; }