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

Retrieves the place index resource details.

* @example * Use a bare-bones client and the command you need to make an API call. * ```javascript * import { LocationClient, DescribePlaceIndexCommand } from "@aws-sdk/client-location"; // ES Modules import * // const { LocationClient, DescribePlaceIndexCommand } = require("@aws-sdk/client-location"); // CommonJS import * const client = new LocationClient(config); * const input = { // DescribePlaceIndexRequest * IndexName: "STRING_VALUE", // required * }; * const command = new DescribePlaceIndexCommand(input); * const response = await client.send(command); * // { // DescribePlaceIndexResponse * // IndexName: "STRING_VALUE", // required * // IndexArn: "STRING_VALUE", // required * // PricingPlan: "STRING_VALUE", * // Description: "STRING_VALUE", // required * // CreateTime: new Date("TIMESTAMP"), // required * // UpdateTime: new Date("TIMESTAMP"), // required * // DataSource: "STRING_VALUE", // required * // DataSourceConfiguration: { // DataSourceConfiguration * // IntendedUse: "STRING_VALUE", * // }, * // Tags: { // TagMap * // "": "STRING_VALUE", * // }, * // }; * * ``` * * @param DescribePlaceIndexCommandInput - {@link DescribePlaceIndexCommandInput} * @returns {@link DescribePlaceIndexCommandOutput} * @see {@link DescribePlaceIndexCommandInput} for command's `input` shape. * @see {@link DescribePlaceIndexCommandOutput} 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 DescribePlaceIndexCommand extends DescribePlaceIndexCommand_base { /** @internal type navigation helper, not in runtime. */ protected static __types: { api: { input: DescribePlaceIndexRequest; output: DescribePlaceIndexResponse; }; sdk: { input: DescribePlaceIndexCommandInput; output: DescribePlaceIndexCommandOutput; }; }; }