import { Command as $Command } from "@smithy/smithy-client"; import type { MetadataBearer as __MetadataBearer } from "@smithy/types"; import type { CostExplorerClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes } from "../CostExplorerClient"; import type { DeleteAnomalyMonitorRequest, DeleteAnomalyMonitorResponse } from "../models/models_0"; /** * @public */ export type { __MetadataBearer }; export { $Command }; /** * @public * * The input for {@link DeleteAnomalyMonitorCommand}. */ export interface DeleteAnomalyMonitorCommandInput extends DeleteAnomalyMonitorRequest { } /** * @public * * The output of {@link DeleteAnomalyMonitorCommand}. */ export interface DeleteAnomalyMonitorCommandOutput extends DeleteAnomalyMonitorResponse, __MetadataBearer { } declare const DeleteAnomalyMonitorCommand_base: { new (input: DeleteAnomalyMonitorCommandInput): import("@smithy/smithy-client").CommandImpl; new (input: DeleteAnomalyMonitorCommandInput): import("@smithy/smithy-client").CommandImpl; getEndpointParameterInstructions(): import("@smithy/middleware-endpoint").EndpointParameterInstructions; }; /** *

Deletes a cost anomaly monitor.

* @example * Use a bare-bones client and the command you need to make an API call. * ```javascript * import { CostExplorerClient, DeleteAnomalyMonitorCommand } from "@aws-sdk/client-cost-explorer"; // ES Modules import * // const { CostExplorerClient, DeleteAnomalyMonitorCommand } = require("@aws-sdk/client-cost-explorer"); // CommonJS import * // import type { CostExplorerClientConfig } from "@aws-sdk/client-cost-explorer"; * const config = {}; // type is CostExplorerClientConfig * const client = new CostExplorerClient(config); * const input = { // DeleteAnomalyMonitorRequest * MonitorArn: "STRING_VALUE", // required * }; * const command = new DeleteAnomalyMonitorCommand(input); * const response = await client.send(command); * // {}; * * ``` * * @param DeleteAnomalyMonitorCommandInput - {@link DeleteAnomalyMonitorCommandInput} * @returns {@link DeleteAnomalyMonitorCommandOutput} * @see {@link DeleteAnomalyMonitorCommandInput} for command's `input` shape. * @see {@link DeleteAnomalyMonitorCommandOutput} for command's `response` shape. * @see {@link CostExplorerClientResolvedConfig | config} for CostExplorerClient's `config` shape. * * @throws {@link LimitExceededException} (client fault) *

You made too many calls in a short period of time. Try again later.

* * @throws {@link UnknownMonitorException} (client fault) *

The cost anomaly monitor does not exist for the account.

* * @throws {@link CostExplorerServiceException} *

Base exception class for all service exceptions from CostExplorer service.

* * * @public */ export declare class DeleteAnomalyMonitorCommand extends DeleteAnomalyMonitorCommand_base { /** @internal type navigation helper, not in runtime. */ protected static __types: { api: { input: DeleteAnomalyMonitorRequest; output: {}; }; sdk: { input: DeleteAnomalyMonitorCommandInput; output: DeleteAnomalyMonitorCommandOutput; }; }; }