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

Updates the specified properties of a given geofence collection.

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