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

Deletes a DBProxyEndpoint. Doing so removes the ability to access the DB proxy using the endpoint that you defined. The endpoint that you delete might have provided capabilities such as read/write or read-only operations, or using a different VPC than the DB proxy's default VPC.

* @example * Use a bare-bones client and the command you need to make an API call. * ```javascript * import { RDSClient, DeleteDBProxyEndpointCommand } from "@aws-sdk/client-rds"; // ES Modules import * // const { RDSClient, DeleteDBProxyEndpointCommand } = 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 = { // DeleteDBProxyEndpointRequest * DBProxyEndpointName: "STRING_VALUE", // required * }; * const command = new DeleteDBProxyEndpointCommand(input); * const response = await client.send(command); * // { // DeleteDBProxyEndpointResponse * // DBProxyEndpoint: { // DBProxyEndpoint * // DBProxyEndpointName: "STRING_VALUE", * // DBProxyEndpointArn: "STRING_VALUE", * // DBProxyName: "STRING_VALUE", * // Status: "available" || "modifying" || "incompatible-network" || "insufficient-resource-limits" || "creating" || "deleting", * // VpcId: "STRING_VALUE", * // VpcSecurityGroupIds: [ // StringList * // "STRING_VALUE", * // ], * // VpcSubnetIds: [ * // "STRING_VALUE", * // ], * // Endpoint: "STRING_VALUE", * // CreatedDate: new Date("TIMESTAMP"), * // TargetRole: "READ_WRITE" || "READ_ONLY", * // IsDefault: true || false, * // EndpointNetworkType: "IPV4" || "IPV6" || "DUAL", * // }, * // }; * * ``` * * @param DeleteDBProxyEndpointCommandInput - {@link DeleteDBProxyEndpointCommandInput} * @returns {@link DeleteDBProxyEndpointCommandOutput} * @see {@link DeleteDBProxyEndpointCommandInput} for command's `input` shape. * @see {@link DeleteDBProxyEndpointCommandOutput} for command's `response` shape. * @see {@link RDSClientResolvedConfig | config} for RDSClient's `config` shape. * * @throws {@link DBProxyEndpointNotFoundFault} (client fault) *

The DB proxy endpoint doesn't exist.

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

You can't perform this operation while the DB proxy endpoint is in a particular state.

* * @throws {@link RDSServiceException} *

Base exception class for all service exceptions from RDS service.

* * * @public */ export declare class DeleteDBProxyEndpointCommand extends DeleteDBProxyEndpointCommand_base { /** @internal type navigation helper, not in runtime. */ protected static __types: { api: { input: DeleteDBProxyEndpointRequest; output: DeleteDBProxyEndpointResponse; }; sdk: { input: DeleteDBProxyEndpointCommandInput; output: DeleteDBProxyEndpointCommandOutput; }; }; }