Skip to main content

inbound_connections

Creates, updates, deletes, gets or lists an inbound_connections resource.

Overview

Nameinbound_connections
TypeResource
Idaws.opensearch.inbound_connections

Fields

The following fields are returned by SELECT queries:

NameDatatypeDescription
connectionsarrayList of inbound connections.
next_tokenstringWhen nextToken is returned, there are more results available. The value of nextToken is a unique pagination token for each page. Send the request again using the returned token to retrieve the next page.

Methods

The following methods are available for this resource:

NameAccessible byRequired ParamsOptional ParamsDescription
describe_inbound_connectionsselectregionLists 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.
delete_inbound_connectiondeleteconnection_id, regionAllows the destination Amazon OpenSearch Service domain owner to delete an existing inbound cross-cluster search connection. For more information, see Cross-cluster search for Amazon OpenSearch Service.

Parameters

Parameters can be passed in the WHERE clause of a query. Check the Methods section to see which parameters are required or optional for each operation.

NameDatatypeDescription
connection_idstringThe ID of the inbound connection to permanently delete.
regionstringAWS region (default: us-east-1)

SELECT examples

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.

SELECT
connections,
next_token
FROM aws.opensearch.inbound_connections
WHERE region = '{{ region }}' -- required
;

DELETE examples

Allows the destination Amazon OpenSearch Service domain owner to delete an existing inbound cross-cluster search connection. For more information, see Cross-cluster search for Amazon OpenSearch Service.

DELETE FROM aws.opensearch.inbound_connections
WHERE connection_id = '{{ connection_id }}' --required
AND region = '{{ region }}' --required
;