import { Command as $Command } from "@smithy/core/client"; import type { MetadataBearer as __MetadataBearer } from "@smithy/types"; import type { DeregisterDBProxyTargetsRequest, DeregisterDBProxyTargetsResponse } from "../models/models_0"; import type { RDSClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes } from "../RDSClient"; /** * @public */ export type { __MetadataBearer }; export { $Command }; /** * @public * * The input for {@link DeregisterDBProxyTargetsCommand}. */ export interface DeregisterDBProxyTargetsCommandInput extends DeregisterDBProxyTargetsRequest { } /** * @public * * The output of {@link DeregisterDBProxyTargetsCommand}. */ export interface DeregisterDBProxyTargetsCommandOutput extends DeregisterDBProxyTargetsResponse, __MetadataBearer { } declare const DeregisterDBProxyTargetsCommand_base: { new (input: DeregisterDBProxyTargetsCommandInput): import("@smithy/core/client").CommandImpl; new (input: DeregisterDBProxyTargetsCommandInput): import("@smithy/core/client").CommandImpl; getEndpointParameterInstructions(): { [x: string]: unknown; }; }; /** *

Remove the association between one or more DBProxyTarget data structures and a DBProxyTargetGroup.

* @example * Use a bare-bones client and the command you need to make an API call. * ```javascript * import { RDSClient, DeregisterDBProxyTargetsCommand } from "@aws-sdk/client-rds"; // ES Modules import * // const { RDSClient, DeregisterDBProxyTargetsCommand } = require("@aws-sdk/client-rds"); // CommonJS import * // import type { RDSClientConfig } from "@aws-sdk/client-rds"; * const config = {}; // type is RDSClientConfig * const client = new RDSClient(config); * const input = { // DeregisterDBProxyTargetsRequest * DBProxyName: "STRING_VALUE", // required * TargetGroupName: "STRING_VALUE", * DBInstanceIdentifiers: [ // StringList * "STRING_VALUE", * ], * DBClusterIdentifiers: [ * "STRING_VALUE", * ], * }; * const command = new DeregisterDBProxyTargetsCommand(input); * const response = await client.send(command); * // {}; * * ``` * * @param DeregisterDBProxyTargetsCommandInput - {@link DeregisterDBProxyTargetsCommandInput} * @returns {@link DeregisterDBProxyTargetsCommandOutput} * @see {@link DeregisterDBProxyTargetsCommandInput} for command's `input` shape. * @see {@link DeregisterDBProxyTargetsCommandOutput} for command's `response` shape. * @see {@link RDSClientResolvedConfig | config} for RDSClient's `config` shape. * * @throws {@link DBProxyNotFoundFault} (client fault) *

The specified proxy name doesn't correspond to a proxy owned by your Amazon Web Services account in the specified Amazon Web Services Region.

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

The specified target group isn't available for a proxy owned by your Amazon Web Services account in the specified Amazon Web Services Region.

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

The specified RDS DB instance or Aurora DB cluster isn't available for a proxy owned by your Amazon Web Services account in the specified Amazon Web Services Region.

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

The requested operation can't be performed while the proxy is in this state.

* * @throws {@link RDSServiceException} *

Base exception class for all service exceptions from RDS service.

* * * @public */ export declare class DeregisterDBProxyTargetsCommand extends DeregisterDBProxyTargetsCommand_base { /** @internal type navigation helper, not in runtime. */ protected static __types: { api: { input: DeregisterDBProxyTargetsRequest; output: {}; }; sdk: { input: DeregisterDBProxyTargetsCommandInput; output: DeregisterDBProxyTargetsCommandOutput; }; }; }