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 { ProvideAnomalyFeedbackRequest, ProvideAnomalyFeedbackResponse } from "../models/models_0"; /** * @public */ export type { __MetadataBearer }; export { $Command }; /** * @public * * The input for {@link ProvideAnomalyFeedbackCommand}. */ export interface ProvideAnomalyFeedbackCommandInput extends ProvideAnomalyFeedbackRequest { } /** * @public * * The output of {@link ProvideAnomalyFeedbackCommand}. */ export interface ProvideAnomalyFeedbackCommandOutput extends ProvideAnomalyFeedbackResponse, __MetadataBearer { } declare const ProvideAnomalyFeedbackCommand_base: { new (input: ProvideAnomalyFeedbackCommandInput): import("@smithy/smithy-client").CommandImpl; new (input: ProvideAnomalyFeedbackCommandInput): import("@smithy/smithy-client").CommandImpl; getEndpointParameterInstructions(): import("@smithy/middleware-endpoint").EndpointParameterInstructions; }; /** *

Modifies the feedback property of a given cost anomaly.

* @example * Use a bare-bones client and the command you need to make an API call. * ```javascript * import { CostExplorerClient, ProvideAnomalyFeedbackCommand } from "@aws-sdk/client-cost-explorer"; // ES Modules import * // const { CostExplorerClient, ProvideAnomalyFeedbackCommand } = 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 = { // ProvideAnomalyFeedbackRequest * AnomalyId: "STRING_VALUE", // required * Feedback: "YES" || "NO" || "PLANNED_ACTIVITY", // required * }; * const command = new ProvideAnomalyFeedbackCommand(input); * const response = await client.send(command); * // { // ProvideAnomalyFeedbackResponse * // AnomalyId: "STRING_VALUE", // required * // }; * * ``` * * @param ProvideAnomalyFeedbackCommandInput - {@link ProvideAnomalyFeedbackCommandInput} * @returns {@link ProvideAnomalyFeedbackCommandOutput} * @see {@link ProvideAnomalyFeedbackCommandInput} for command's `input` shape. * @see {@link ProvideAnomalyFeedbackCommandOutput} 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 CostExplorerServiceException} *

Base exception class for all service exceptions from CostExplorer service.

* * * @public */ export declare class ProvideAnomalyFeedbackCommand extends ProvideAnomalyFeedbackCommand_base { /** @internal type navigation helper, not in runtime. */ protected static __types: { api: { input: ProvideAnomalyFeedbackRequest; output: ProvideAnomalyFeedbackResponse; }; sdk: { input: ProvideAnomalyFeedbackCommandInput; output: ProvideAnomalyFeedbackCommandOutput; }; }; }