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

Returns information about DB proxies.

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

Base exception class for all service exceptions from RDS service.

* * * @public */ export declare class DescribeDBProxiesCommand extends DescribeDBProxiesCommand_base { /** @internal type navigation helper, not in runtime. */ protected static __types: { api: { input: DescribeDBProxiesRequest; output: DescribeDBProxiesResponse; }; sdk: { input: DescribeDBProxiesCommandInput; output: DescribeDBProxiesCommandOutput; }; }; }