import type { MetadataBearer as __MetadataBearer } from "@smithy/types"; import type { RemoveNotificationChannelRequest, RemoveNotificationChannelResponse } from "../models/models_0"; /** * @public */ export type { __MetadataBearer }; /** * @public * * The input for {@link RemoveNotificationChannelCommand}. */ export interface RemoveNotificationChannelCommandInput extends RemoveNotificationChannelRequest { } /** * @public * * The output of {@link RemoveNotificationChannelCommand}. */ export interface RemoveNotificationChannelCommandOutput extends RemoveNotificationChannelResponse, __MetadataBearer { } declare const RemoveNotificationChannelCommand_base: { new (input: RemoveNotificationChannelCommandInput): import("@smithy/core/client").CommandImpl; new (input: RemoveNotificationChannelCommandInput): import("@smithy/core/client").CommandImpl; getEndpointParameterInstructions(): import("@smithy/types").EndpointParameterInstructions; }; /** *

Remove one anomaly notifications channel for a profiling group.

* @example * Use a bare-bones client and the command you need to make an API call. * ```javascript * import { CodeGuruProfilerClient, RemoveNotificationChannelCommand } from "@aws-sdk/client-codeguruprofiler"; // ES Modules import * // const { CodeGuruProfilerClient, RemoveNotificationChannelCommand } = require("@aws-sdk/client-codeguruprofiler"); // CommonJS import * // import type { CodeGuruProfilerClientConfig } from "@aws-sdk/client-codeguruprofiler"; * const config = {}; // type is CodeGuruProfilerClientConfig * const client = new CodeGuruProfilerClient(config); * const input = { // RemoveNotificationChannelRequest * profilingGroupName: "STRING_VALUE", // required * channelId: "STRING_VALUE", // required * }; * const command = new RemoveNotificationChannelCommand(input); * const response = await client.send(command); * // { // RemoveNotificationChannelResponse * // notificationConfiguration: { // NotificationConfiguration * // channels: [ // Channels * // { // Channel * // id: "STRING_VALUE", * // uri: "STRING_VALUE", // required * // eventPublishers: [ // EventPublishers // required * // "STRING_VALUE", * // ], * // }, * // ], * // }, * // }; * * ``` * * @param RemoveNotificationChannelCommandInput - {@link RemoveNotificationChannelCommandInput} * @returns {@link RemoveNotificationChannelCommandOutput} * @see {@link RemoveNotificationChannelCommandInput} for command's `input` shape. * @see {@link RemoveNotificationChannelCommandOutput} for command's `response` shape. * @see {@link CodeGuruProfilerClientResolvedConfig | config} for CodeGuruProfilerClient's `config` shape. * * @throws {@link InternalServerException} (server fault) *

The server encountered an internal error and is unable to complete the request.

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

The resource specified in the request does not exist.

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

The request was denied due to request throttling.

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

The parameter is not valid.

* * @throws {@link CodeGuruProfilerServiceException} *

Base exception class for all service exceptions from CodeGuruProfiler service.

* * * @public */ export declare class RemoveNotificationChannelCommand extends RemoveNotificationChannelCommand_base { /** @internal type navigation helper, not in runtime. */ protected static __types: { api: { input: RemoveNotificationChannelRequest; output: RemoveNotificationChannelResponse; }; sdk: { input: RemoveNotificationChannelCommandInput; output: RemoveNotificationChannelCommandOutput; }; }; }