import { Command as $Command } from "@smithy/core/client"; import type { MetadataBearer as __MetadataBearer } from "@smithy/types"; import type { DescribeDBProxyEndpointsRequest, DescribeDBProxyEndpointsResponse } from "../models/models_0"; import type { RDSClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes } from "../RDSClient"; /** * @public */ export type { __MetadataBearer }; export { $Command }; /** * @public * * The input for {@link DescribeDBProxyEndpointsCommand}. */ export interface DescribeDBProxyEndpointsCommandInput extends DescribeDBProxyEndpointsRequest { } /** * @public * * The output of {@link DescribeDBProxyEndpointsCommand}. */ export interface DescribeDBProxyEndpointsCommandOutput extends DescribeDBProxyEndpointsResponse, __MetadataBearer { } declare const DescribeDBProxyEndpointsCommand_base: { new (input: DescribeDBProxyEndpointsCommandInput): import("@smithy/core/client").CommandImpl; new (...[input]: [] | [DescribeDBProxyEndpointsCommandInput]): import("@smithy/core/client").CommandImpl; getEndpointParameterInstructions(): { [x: string]: unknown; }; }; /** *

Returns information about DB proxy endpoints.

* @example * Use a bare-bones client and the command you need to make an API call. * ```javascript * import { RDSClient, DescribeDBProxyEndpointsCommand } from "@aws-sdk/client-rds"; // ES Modules import * // const { RDSClient, DescribeDBProxyEndpointsCommand } = 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 = { // DescribeDBProxyEndpointsRequest * DBProxyName: "STRING_VALUE", * DBProxyEndpointName: "STRING_VALUE", * Filters: [ // FilterList * { // Filter * Name: "STRING_VALUE", // required * Values: [ // FilterValueList // required * "STRING_VALUE", * ], * }, * ], * Marker: "STRING_VALUE", * MaxRecords: Number("int"), * }; * const command = new DescribeDBProxyEndpointsCommand(input); * const response = await client.send(command); * // { // DescribeDBProxyEndpointsResponse * // DBProxyEndpoints: [ // DBProxyEndpointList * // { // 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", * // }, * // ], * // Marker: "STRING_VALUE", * // }; * * ``` * * @param DescribeDBProxyEndpointsCommandInput - {@link DescribeDBProxyEndpointsCommandInput} * @returns {@link DescribeDBProxyEndpointsCommandOutput} * @see {@link DescribeDBProxyEndpointsCommandInput} for command's `input` shape. * @see {@link DescribeDBProxyEndpointsCommandOutput} 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 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 RDSServiceException} *

Base exception class for all service exceptions from RDS service.

* * * @public */ export declare class DescribeDBProxyEndpointsCommand extends DescribeDBProxyEndpointsCommand_base { /** @internal type navigation helper, not in runtime. */ protected static __types: { api: { input: DescribeDBProxyEndpointsRequest; output: DescribeDBProxyEndpointsResponse; }; sdk: { input: DescribeDBProxyEndpointsCommandInput; output: DescribeDBProxyEndpointsCommandOutput; }; }; }