import { Command as $Command } from "@smithy/core/client"; import type { MetadataBearer as __MetadataBearer } from "@smithy/types"; import type { DescribeInboundConnectionsRequest, DescribeInboundConnectionsResponse } from "../models/models_0"; import type { OpenSearchClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes } from "../OpenSearchClient"; /** * @public */ export type { __MetadataBearer }; export { $Command }; /** * @public * * The input for {@link DescribeInboundConnectionsCommand}. */ export interface DescribeInboundConnectionsCommandInput extends DescribeInboundConnectionsRequest { } /** * @public * * The output of {@link DescribeInboundConnectionsCommand}. */ export interface DescribeInboundConnectionsCommandOutput extends DescribeInboundConnectionsResponse, __MetadataBearer { } declare const DescribeInboundConnectionsCommand_base: { new (input: DescribeInboundConnectionsCommandInput): import("@smithy/core/client").CommandImpl; new (...[input]: [] | [DescribeInboundConnectionsCommandInput]): import("@smithy/core/client").CommandImpl; getEndpointParameterInstructions(): { [x: string]: unknown; }; }; /** *

Lists all the inbound cross-cluster search connections for a destination (remote) * Amazon OpenSearch Service domain. For more information, see Cross-cluster search for Amazon OpenSearch Service.

* @example * Use a bare-bones client and the command you need to make an API call. * ```javascript * import { OpenSearchClient, DescribeInboundConnectionsCommand } from "@aws-sdk/client-opensearch"; // ES Modules import * // const { OpenSearchClient, DescribeInboundConnectionsCommand } = require("@aws-sdk/client-opensearch"); // CommonJS import * // import type { OpenSearchClientConfig } from "@aws-sdk/client-opensearch"; * const config = {}; // type is OpenSearchClientConfig * const client = new OpenSearchClient(config); * const input = { // DescribeInboundConnectionsRequest * Filters: [ // FilterList * { // Filter * Name: "STRING_VALUE", * Values: [ // ValueStringList * "STRING_VALUE", * ], * }, * ], * MaxResults: Number("int"), * NextToken: "STRING_VALUE", * }; * const command = new DescribeInboundConnectionsCommand(input); * const response = await client.send(command); * // { // DescribeInboundConnectionsResponse * // Connections: [ // InboundConnections * // { // InboundConnection * // LocalDomainInfo: { // DomainInformationContainer * // AWSDomainInformation: { // AWSDomainInformation * // OwnerId: "STRING_VALUE", * // DomainName: "STRING_VALUE", // required * // Region: "STRING_VALUE", * // }, * // }, * // RemoteDomainInfo: { * // AWSDomainInformation: { * // OwnerId: "STRING_VALUE", * // DomainName: "STRING_VALUE", // required * // Region: "STRING_VALUE", * // }, * // }, * // ConnectionId: "STRING_VALUE", * // ConnectionStatus: { // InboundConnectionStatus * // StatusCode: "PENDING_ACCEPTANCE" || "APPROVED" || "PROVISIONING" || "ACTIVE" || "REJECTING" || "REJECTED" || "DELETING" || "DELETED", * // Message: "STRING_VALUE", * // }, * // ConnectionMode: "DIRECT" || "VPC_ENDPOINT", * // }, * // ], * // NextToken: "STRING_VALUE", * // }; * * ``` * * @param DescribeInboundConnectionsCommandInput - {@link DescribeInboundConnectionsCommandInput} * @returns {@link DescribeInboundConnectionsCommandOutput} * @see {@link DescribeInboundConnectionsCommandInput} for command's `input` shape. * @see {@link DescribeInboundConnectionsCommandOutput} for command's `response` shape. * @see {@link OpenSearchClientResolvedConfig | config} for OpenSearchClient's `config` shape. * * @throws {@link DisabledOperationException} (client fault) *

An error occured because the client wanted to access an unsupported operation.

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

Request processing failed because you provided an invalid pagination token.

* * @throws {@link OpenSearchServiceException} *

Base exception class for all service exceptions from OpenSearch service.

* * * @public */ export declare class DescribeInboundConnectionsCommand extends DescribeInboundConnectionsCommand_base { /** @internal type navigation helper, not in runtime. */ protected static __types: { api: { input: DescribeInboundConnectionsRequest; output: DescribeInboundConnectionsResponse; }; sdk: { input: DescribeInboundConnectionsCommandInput; output: DescribeInboundConnectionsCommandOutput; }; }; }