import { Command as $Command } from "@smithy/smithy-client"; import type { MetadataBearer as __MetadataBearer } from "@smithy/types"; import type { DeleteRumMetricsDestinationRequest, DeleteRumMetricsDestinationResponse } from "../models/models_0"; import type { RUMClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes } from "../RUMClient"; /** * @public */ export type { __MetadataBearer }; export { $Command }; /** * @public * * The input for {@link DeleteRumMetricsDestinationCommand}. */ export interface DeleteRumMetricsDestinationCommandInput extends DeleteRumMetricsDestinationRequest { } /** * @public * * The output of {@link DeleteRumMetricsDestinationCommand}. */ export interface DeleteRumMetricsDestinationCommandOutput extends DeleteRumMetricsDestinationResponse, __MetadataBearer { } declare const DeleteRumMetricsDestinationCommand_base: { new (input: DeleteRumMetricsDestinationCommandInput): import("@smithy/smithy-client").CommandImpl; new (input: DeleteRumMetricsDestinationCommandInput): import("@smithy/smithy-client").CommandImpl; getEndpointParameterInstructions(): import("@smithy/middleware-endpoint").EndpointParameterInstructions; }; /** *

Deletes a destination for CloudWatch RUM extended metrics, so that the specified app monitor stops sending extended metrics to that destination.

* @example * Use a bare-bones client and the command you need to make an API call. * ```javascript * import { RUMClient, DeleteRumMetricsDestinationCommand } from "@aws-sdk/client-rum"; // ES Modules import * // const { RUMClient, DeleteRumMetricsDestinationCommand } = require("@aws-sdk/client-rum"); // CommonJS import * // import type { RUMClientConfig } from "@aws-sdk/client-rum"; * const config = {}; // type is RUMClientConfig * const client = new RUMClient(config); * const input = { // DeleteRumMetricsDestinationRequest * AppMonitorName: "STRING_VALUE", // required * Destination: "STRING_VALUE", // required * DestinationArn: "STRING_VALUE", * }; * const command = new DeleteRumMetricsDestinationCommand(input); * const response = await client.send(command); * // {}; * * ``` * * @param DeleteRumMetricsDestinationCommandInput - {@link DeleteRumMetricsDestinationCommandInput} * @returns {@link DeleteRumMetricsDestinationCommandOutput} * @see {@link DeleteRumMetricsDestinationCommandInput} for command's `input` shape. * @see {@link DeleteRumMetricsDestinationCommandOutput} for command's `response` shape. * @see {@link RUMClientResolvedConfig | config} for RUMClient's `config` shape. * * @throws {@link AccessDeniedException} (client fault) *

You don't have sufficient permissions to perform this action.

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

This operation attempted to create a resource that already exists.

* * @throws {@link InternalServerException} (server fault) *

Internal service exception.

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

Resource not found.

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

The request was throttled because of quota limits.

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

One of the arguments for the request is not valid.

* * @throws {@link RUMServiceException} *

Base exception class for all service exceptions from RUM service.

* * * @public */ export declare class DeleteRumMetricsDestinationCommand extends DeleteRumMetricsDestinationCommand_base { /** @internal type navigation helper, not in runtime. */ protected static __types: { api: { input: DeleteRumMetricsDestinationRequest; output: {}; }; sdk: { input: DeleteRumMetricsDestinationCommandInput; output: DeleteRumMetricsDestinationCommandOutput; }; }; }