import type { MetadataBearer as __MetadataBearer } from "@smithy/types"; import type { DeleteTargetRequest, DeleteTargetResult } from "../models/models_0"; /** * @public */ export type { __MetadataBearer }; /** * @public * * The input for {@link DeleteTargetCommand}. */ export interface DeleteTargetCommandInput extends DeleteTargetRequest { } /** * @public * * The output of {@link DeleteTargetCommand}. */ export interface DeleteTargetCommandOutput extends DeleteTargetResult, __MetadataBearer { } declare const DeleteTargetCommand_base: { new (input: DeleteTargetCommandInput): import("@smithy/core/client").CommandImpl; new (input: DeleteTargetCommandInput): import("@smithy/core/client").CommandImpl; getEndpointParameterInstructions(): import("@smithy/types").EndpointParameterInstructions; }; /** *

Deletes a specified target for notifications.

* @example * Use a bare-bones client and the command you need to make an API call. * ```javascript * import { CodestarNotificationsClient, DeleteTargetCommand } from "@aws-sdk/client-codestar-notifications"; // ES Modules import * // const { CodestarNotificationsClient, DeleteTargetCommand } = require("@aws-sdk/client-codestar-notifications"); // CommonJS import * // import type { CodestarNotificationsClientConfig } from "@aws-sdk/client-codestar-notifications"; * const config = {}; // type is CodestarNotificationsClientConfig * const client = new CodestarNotificationsClient(config); * const input = { // DeleteTargetRequest * TargetAddress: "STRING_VALUE", // required * ForceUnsubscribeAll: true || false, * }; * const command = new DeleteTargetCommand(input); * const response = await client.send(command); * // {}; * * ``` * * @param DeleteTargetCommandInput - {@link DeleteTargetCommandInput} * @returns {@link DeleteTargetCommandOutput} * @see {@link DeleteTargetCommandInput} for command's `input` shape. * @see {@link DeleteTargetCommandOutput} for command's `response` shape. * @see {@link CodestarNotificationsClientResolvedConfig | config} for CodestarNotificationsClient's `config` shape. * * @throws {@link ValidationException} (client fault) *

One or more parameter values are not valid.

* * @throws {@link CodestarNotificationsServiceException} *

Base exception class for all service exceptions from CodestarNotifications service.

* * * @public */ export declare class DeleteTargetCommand extends DeleteTargetCommand_base { /** @internal type navigation helper, not in runtime. */ protected static __types: { api: { input: DeleteTargetRequest; output: {}; }; sdk: { input: DeleteTargetCommandInput; output: DeleteTargetCommandOutput; }; }; }