import { Command as $Command } from "@smithy/smithy-client"; import { MetadataBearer as __MetadataBearer } from "@smithy/types"; import { LocationClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes } from "../LocationClient"; import { DescribeTrackerRequest, DescribeTrackerResponse } from "../models/models_0"; /** * @public */ export type { __MetadataBearer }; export { $Command }; /** * @public * * The input for {@link DescribeTrackerCommand}. */ export interface DescribeTrackerCommandInput extends DescribeTrackerRequest { } /** * @public * * The output of {@link DescribeTrackerCommand}. */ export interface DescribeTrackerCommandOutput extends DescribeTrackerResponse, __MetadataBearer { } declare const DescribeTrackerCommand_base: { new (input: DescribeTrackerCommandInput): import("@smithy/smithy-client").CommandImpl; new (input: DescribeTrackerCommandInput): import("@smithy/smithy-client").CommandImpl; getEndpointParameterInstructions(): import("@smithy/middleware-endpoint").EndpointParameterInstructions; }; /** *

Retrieves the tracker resource details.

* @example * Use a bare-bones client and the command you need to make an API call. * ```javascript * import { LocationClient, DescribeTrackerCommand } from "@aws-sdk/client-location"; // ES Modules import * // const { LocationClient, DescribeTrackerCommand } = require("@aws-sdk/client-location"); // CommonJS import * const client = new LocationClient(config); * const input = { // DescribeTrackerRequest * TrackerName: "STRING_VALUE", // required * }; * const command = new DescribeTrackerCommand(input); * const response = await client.send(command); * // { // DescribeTrackerResponse * // TrackerName: "STRING_VALUE", // required * // TrackerArn: "STRING_VALUE", // required * // Description: "STRING_VALUE", // required * // PricingPlan: "STRING_VALUE", * // PricingPlanDataSource: "STRING_VALUE", * // Tags: { // TagMap * // "": "STRING_VALUE", * // }, * // CreateTime: new Date("TIMESTAMP"), // required * // UpdateTime: new Date("TIMESTAMP"), // required * // KmsKeyId: "STRING_VALUE", * // PositionFiltering: "STRING_VALUE", * // EventBridgeEnabled: true || false, * // KmsKeyEnableGeospatialQueries: true || false, * // }; * * ``` * * @param DescribeTrackerCommandInput - {@link DescribeTrackerCommandInput} * @returns {@link DescribeTrackerCommandOutput} * @see {@link DescribeTrackerCommandInput} for command's `input` shape. * @see {@link DescribeTrackerCommandOutput} for command's `response` shape. * @see {@link LocationClientResolvedConfig | config} for LocationClient's `config` shape. * * @throws {@link AccessDeniedException} (client fault) *

The request was denied because of insufficient access or permissions. Check with an * administrator to verify your permissions.

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

The request has failed to process because of an unknown server error, exception, or failure.

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

The resource that you've entered was not found in your AWS account.

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

The request was denied because of request throttling.

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

The input failed to meet the constraints specified by the AWS service.

* * @throws {@link LocationServiceException} *

Base exception class for all service exceptions from Location service.

* * * @public */ export declare class DescribeTrackerCommand extends DescribeTrackerCommand_base { /** @internal type navigation helper, not in runtime. */ protected static __types: { api: { input: DescribeTrackerRequest; output: DescribeTrackerResponse; }; sdk: { input: DescribeTrackerCommandInput; output: DescribeTrackerCommandOutput; }; }; }