import { Command as $Command } from "@smithy/smithy-client"; import { MetadataBearer as __MetadataBearer } from "@smithy/types"; import { LocationClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes } from "../LocationClient"; import { ListPlaceIndexesRequest, ListPlaceIndexesResponse } from "../models/models_0"; /** * @public */ export type { __MetadataBearer }; export { $Command }; /** * @public * * The input for {@link ListPlaceIndexesCommand}. */ export interface ListPlaceIndexesCommandInput extends ListPlaceIndexesRequest { } /** * @public * * The output of {@link ListPlaceIndexesCommand}. */ export interface ListPlaceIndexesCommandOutput extends ListPlaceIndexesResponse, __MetadataBearer { } declare const ListPlaceIndexesCommand_base: { new (input: ListPlaceIndexesCommandInput): import("@smithy/smithy-client").CommandImpl; new (...[input]: [] | [ListPlaceIndexesCommandInput]): import("@smithy/smithy-client").CommandImpl; getEndpointParameterInstructions(): import("@smithy/middleware-endpoint").EndpointParameterInstructions; }; /** *

Lists place index resources in your Amazon Web Services account.

* @example * Use a bare-bones client and the command you need to make an API call. * ```javascript * import { LocationClient, ListPlaceIndexesCommand } from "@aws-sdk/client-location"; // ES Modules import * // const { LocationClient, ListPlaceIndexesCommand } = require("@aws-sdk/client-location"); // CommonJS import * const client = new LocationClient(config); * const input = { // ListPlaceIndexesRequest * MaxResults: Number("int"), * NextToken: "STRING_VALUE", * }; * const command = new ListPlaceIndexesCommand(input); * const response = await client.send(command); * // { // ListPlaceIndexesResponse * // Entries: [ // ListPlaceIndexesResponseEntryList // required * // { // ListPlaceIndexesResponseEntry * // IndexName: "STRING_VALUE", // required * // Description: "STRING_VALUE", // required * // DataSource: "STRING_VALUE", // required * // PricingPlan: "STRING_VALUE", * // CreateTime: new Date("TIMESTAMP"), // required * // UpdateTime: new Date("TIMESTAMP"), // required * // }, * // ], * // NextToken: "STRING_VALUE", * // }; * * ``` * * @param ListPlaceIndexesCommandInput - {@link ListPlaceIndexesCommandInput} * @returns {@link ListPlaceIndexesCommandOutput} * @see {@link ListPlaceIndexesCommandInput} for command's `input` shape. * @see {@link ListPlaceIndexesCommandOutput} 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 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 ListPlaceIndexesCommand extends ListPlaceIndexesCommand_base { /** @internal type navigation helper, not in runtime. */ protected static __types: { api: { input: ListPlaceIndexesRequest; output: ListPlaceIndexesResponse; }; sdk: { input: ListPlaceIndexesCommandInput; output: ListPlaceIndexesCommandOutput; }; }; }