Skip to content

Delete Inbound Connection

opensearchservice_delete_inbound_connection R Documentation

Allows the destination Amazon OpenSearch Service domain owner to delete an existing inbound cross-cluster search connection

Description

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.

Usage

opensearchservice_delete_inbound_connection(ConnectionId)

Arguments

ConnectionId

[required] The ID of the inbound connection to permanently delete.

Value

A list with the following syntax:

list(
  Connection = list(
    LocalDomainInfo = list(
      AWSDomainInformation = list(
        OwnerId = "string",
        DomainName = "string",
        Region = "string"
      )
    ),
    RemoteDomainInfo = list(
      AWSDomainInformation = list(
        OwnerId = "string",
        DomainName = "string",
        Region = "string"
      )
    ),
    ConnectionId = "string",
    ConnectionStatus = list(
      StatusCode = "PENDING_ACCEPTANCE"|"APPROVED"|"PROVISIONING"|"ACTIVE"|"REJECTING"|"REJECTED"|"DELETING"|"DELETED",
      Message = "string"
    ),
    ConnectionMode = "DIRECT"|"VPC_ENDPOINT"
  )
)

Request syntax

svc$delete_inbound_connection(
  ConnectionId = "string"
)