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

Updates the specified properties of a given place index resource.

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