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

Deletes a geofence collection from your Amazon Web Services account.

* *

This operation deletes the resource permanently. If the geofence collection is the * target of a tracker resource, the devices will no longer be monitored.

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