import type { MetadataBearer as __MetadataBearer } from "@smithy/types"; import type { DeleteReportDefinitionRequest, DeleteReportDefinitionResponse } from "../models/models_0"; /** * @public */ export type { __MetadataBearer }; /** * @public * * The input for {@link DeleteReportDefinitionCommand}. */ export interface DeleteReportDefinitionCommandInput extends DeleteReportDefinitionRequest { } /** * @public * * The output of {@link DeleteReportDefinitionCommand}. */ export interface DeleteReportDefinitionCommandOutput extends DeleteReportDefinitionResponse, __MetadataBearer { } declare const DeleteReportDefinitionCommand_base: { new (input: DeleteReportDefinitionCommandInput): import("@smithy/core/client").CommandImpl; new (input: DeleteReportDefinitionCommandInput): import("@smithy/core/client").CommandImpl; getEndpointParameterInstructions(): import("@smithy/types").EndpointParameterInstructions; }; /** *

Deletes the specified report. Any tags associated with the report are also * deleted.

* @example * Use a bare-bones client and the command you need to make an API call. * ```javascript * import { CostAndUsageReportServiceClient, DeleteReportDefinitionCommand } from "@aws-sdk/client-cost-and-usage-report-service"; // ES Modules import * // const { CostAndUsageReportServiceClient, DeleteReportDefinitionCommand } = require("@aws-sdk/client-cost-and-usage-report-service"); // CommonJS import * // import type { CostAndUsageReportServiceClientConfig } from "@aws-sdk/client-cost-and-usage-report-service"; * const config = {}; // type is CostAndUsageReportServiceClientConfig * const client = new CostAndUsageReportServiceClient(config); * const input = { // DeleteReportDefinitionRequest * ReportName: "STRING_VALUE", // required * }; * const command = new DeleteReportDefinitionCommand(input); * const response = await client.send(command); * // { // DeleteReportDefinitionResponse * // ResponseMessage: "STRING_VALUE", * // }; * * ``` * * @param DeleteReportDefinitionCommandInput - {@link DeleteReportDefinitionCommandInput} * @returns {@link DeleteReportDefinitionCommandOutput} * @see {@link DeleteReportDefinitionCommandInput} for command's `input` shape. * @see {@link DeleteReportDefinitionCommandOutput} for command's `response` shape. * @see {@link CostAndUsageReportServiceClientResolvedConfig | config} for CostAndUsageReportServiceClient's `config` shape. * * @throws {@link InternalErrorException} (server fault) *

An error on the server occurred during the processing of your request. Try again later.

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

The input fails to satisfy the constraints specified by an Amazon Web Services service.

* * @throws {@link CostAndUsageReportServiceServiceException} *

Base exception class for all service exceptions from CostAndUsageReportService service.

* * * @example To delete the AWS Cost and Usage report named ExampleReport. * ```javascript * // The following example deletes the AWS Cost and Usage report named ExampleReport. * const input = { * ReportName: "ExampleReport" * }; * const command = new DeleteReportDefinitionCommand(input); * const response = await client.send(command); * /* response is * { /* metadata only *\/ } * *\/ * ``` * * @public */ export declare class DeleteReportDefinitionCommand extends DeleteReportDefinitionCommand_base { /** @internal type navigation helper, not in runtime. */ protected static __types: { api: { input: DeleteReportDefinitionRequest; output: DeleteReportDefinitionResponse; }; sdk: { input: DeleteReportDefinitionCommandInput; output: DeleteReportDefinitionCommandOutput; }; }; }