import type { MetadataBearer as __MetadataBearer } from "@smithy/types"; import type { GetVehicleRequest, GetVehicleResponse } from "../models/models_0"; /** * @public */ export type { __MetadataBearer }; /** * @public * * The input for {@link GetVehicleCommand}. */ export interface GetVehicleCommandInput extends GetVehicleRequest { } /** * @public * * The output of {@link GetVehicleCommand}. */ export interface GetVehicleCommandOutput extends GetVehicleResponse, __MetadataBearer { } declare const GetVehicleCommand_base: { new (input: GetVehicleCommandInput): import("@smithy/core/client").CommandImpl; new (input: GetVehicleCommandInput): import("@smithy/core/client").CommandImpl; getEndpointParameterInstructions(): import("@smithy/types").EndpointParameterInstructions; }; /** *

Retrieves information about a vehicle.

* @example * Use a bare-bones client and the command you need to make an API call. * ```javascript * import { IoTFleetWiseClient, GetVehicleCommand } from "@aws-sdk/client-iotfleetwise"; // ES Modules import * // const { IoTFleetWiseClient, GetVehicleCommand } = 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 = { // GetVehicleRequest * vehicleName: "STRING_VALUE", // required * }; * const command = new GetVehicleCommand(input); * const response = await client.send(command); * // { // GetVehicleResponse * // vehicleName: "STRING_VALUE", * // arn: "STRING_VALUE", * // modelManifestArn: "STRING_VALUE", * // decoderManifestArn: "STRING_VALUE", * // attributes: { // attributesMap * // "": "STRING_VALUE", * // }, * // stateTemplates: [ // StateTemplateAssociations * // { // StateTemplateAssociation * // identifier: "STRING_VALUE", // required * // stateTemplateUpdateStrategy: { // StateTemplateUpdateStrategy Union: only one key present * // periodic: { // PeriodicStateTemplateUpdateStrategy * // stateTemplateUpdateRate: { // TimePeriod * // unit: "MILLISECOND" || "SECOND" || "MINUTE" || "HOUR", // required * // value: Number("int"), // required * // }, * // }, * // onChange: {}, * // }, * // }, * // ], * // creationTime: new Date("TIMESTAMP"), * // lastModificationTime: new Date("TIMESTAMP"), * // }; * * ``` * * @param GetVehicleCommandInput - {@link GetVehicleCommandInput} * @returns {@link GetVehicleCommandOutput} * @see {@link GetVehicleCommandInput} for command's `input` shape. * @see {@link GetVehicleCommandOutput} 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 ResourceNotFoundException} (client fault) *

The resource wasn't found.

* * @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 GetVehicleCommand extends GetVehicleCommand_base { /** @internal type navigation helper, not in runtime. */ protected static __types: { api: { input: GetVehicleRequest; output: GetVehicleResponse; }; sdk: { input: GetVehicleCommandInput; output: GetVehicleCommandOutput; }; }; }