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

Deletes an existing DB proxy.

* @example * Use a bare-bones client and the command you need to make an API call. * ```javascript * import { RDSClient, DeleteDBProxyCommand } from "@aws-sdk/client-rds"; // ES Modules import * // const { RDSClient, DeleteDBProxyCommand } = 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 = { // DeleteDBProxyRequest * DBProxyName: "STRING_VALUE", // required * }; * const command = new DeleteDBProxyCommand(input); * const response = await client.send(command); * // { // DeleteDBProxyResponse * // DBProxy: { // DBProxy * // DBProxyName: "STRING_VALUE", * // DBProxyArn: "STRING_VALUE", * // Status: "available" || "modifying" || "incompatible-network" || "insufficient-resource-limits" || "creating" || "deleting" || "suspended" || "suspending" || "reactivating", * // EngineFamily: "STRING_VALUE", * // VpcId: "STRING_VALUE", * // VpcSecurityGroupIds: [ // StringList * // "STRING_VALUE", * // ], * // VpcSubnetIds: [ * // "STRING_VALUE", * // ], * // DefaultAuthScheme: "STRING_VALUE", * // Auth: [ // UserAuthConfigInfoList * // { // UserAuthConfigInfo * // Description: "STRING_VALUE", * // UserName: "STRING_VALUE", * // AuthScheme: "SECRETS", * // SecretArn: "STRING_VALUE", * // IAMAuth: "DISABLED" || "REQUIRED" || "ENABLED", * // ClientPasswordAuthType: "MYSQL_NATIVE_PASSWORD" || "MYSQL_CACHING_SHA2_PASSWORD" || "POSTGRES_SCRAM_SHA_256" || "POSTGRES_MD5" || "SQL_SERVER_AUTHENTICATION", * // }, * // ], * // RoleArn: "STRING_VALUE", * // Endpoint: "STRING_VALUE", * // RequireTLS: true || false, * // IdleClientTimeout: Number("int"), * // DebugLogging: true || false, * // CreatedDate: new Date("TIMESTAMP"), * // UpdatedDate: new Date("TIMESTAMP"), * // EndpointNetworkType: "IPV4" || "IPV6" || "DUAL", * // TargetConnectionNetworkType: "IPV4" || "IPV6", * // }, * // }; * * ``` * * @param DeleteDBProxyCommandInput - {@link DeleteDBProxyCommandInput} * @returns {@link DeleteDBProxyCommandOutput} * @see {@link DeleteDBProxyCommandInput} for command's `input` shape. * @see {@link DeleteDBProxyCommandOutput} 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 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 DeleteDBProxyCommand extends DeleteDBProxyCommand_base { /** @internal type navigation helper, not in runtime. */ protected static __types: { api: { input: DeleteDBProxyRequest; output: DeleteDBProxyResponse; }; sdk: { input: DeleteDBProxyCommandInput; output: DeleteDBProxyCommandOutput; }; }; }