import { Command as $Command } from "@smithy/core/client"; import type { MetadataBearer as __MetadataBearer } from "@smithy/types"; import type { DeleteOutboundConnectionRequest, DeleteOutboundConnectionResponse } from "../models/models_0"; import type { OpenSearchClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes } from "../OpenSearchClient"; /** * @public */ export type { __MetadataBearer }; export { $Command }; /** * @public * * The input for {@link DeleteOutboundConnectionCommand}. */ export interface DeleteOutboundConnectionCommandInput extends DeleteOutboundConnectionRequest { } /** * @public * * The output of {@link DeleteOutboundConnectionCommand}. */ export interface DeleteOutboundConnectionCommandOutput extends DeleteOutboundConnectionResponse, __MetadataBearer { } declare const DeleteOutboundConnectionCommand_base: { new (input: DeleteOutboundConnectionCommandInput): import("@smithy/core/client").CommandImpl; new (input: DeleteOutboundConnectionCommandInput): import("@smithy/core/client").CommandImpl; getEndpointParameterInstructions(): { [x: string]: unknown; }; }; /** *

Allows the source Amazon OpenSearch Service domain owner to delete an existing * outbound cross-cluster search connection. 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, DeleteOutboundConnectionCommand } from "@aws-sdk/client-opensearch"; // ES Modules import * // const { OpenSearchClient, DeleteOutboundConnectionCommand } = 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 = { // DeleteOutboundConnectionRequest * ConnectionId: "STRING_VALUE", // required * }; * const command = new DeleteOutboundConnectionCommand(input); * const response = await client.send(command); * // { // DeleteOutboundConnectionResponse * // Connection: { // OutboundConnection * // 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", * // ConnectionAlias: "STRING_VALUE", * // ConnectionStatus: { // OutboundConnectionStatus * // StatusCode: "VALIDATING" || "VALIDATION_FAILED" || "PENDING_ACCEPTANCE" || "APPROVED" || "PROVISIONING" || "ACTIVE" || "REJECTING" || "REJECTED" || "DELETING" || "DELETED", * // Message: "STRING_VALUE", * // }, * // ConnectionMode: "DIRECT" || "VPC_ENDPOINT", * // ConnectionProperties: { // ConnectionProperties * // Endpoint: "STRING_VALUE", * // CrossClusterSearch: { // CrossClusterSearchConnectionProperties * // SkipUnavailable: "ENABLED" || "DISABLED", * // }, * // }, * // }, * // }; * * ``` * * @param DeleteOutboundConnectionCommandInput - {@link DeleteOutboundConnectionCommandInput} * @returns {@link DeleteOutboundConnectionCommandOutput} * @see {@link DeleteOutboundConnectionCommandInput} for command's `input` shape. * @see {@link DeleteOutboundConnectionCommandOutput} 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 ResourceNotFoundException} (client fault) *

An exception for accessing or deleting a resource that doesn't exist.

* * @throws {@link OpenSearchServiceException} *

Base exception class for all service exceptions from OpenSearch service.

* * * @public */ export declare class DeleteOutboundConnectionCommand extends DeleteOutboundConnectionCommand_base { /** @internal type navigation helper, not in runtime. */ protected static __types: { api: { input: DeleteOutboundConnectionRequest; output: DeleteOutboundConnectionResponse; }; sdk: { input: DeleteOutboundConnectionCommandInput; output: DeleteOutboundConnectionCommandOutput; }; }; }