Skip to content

Reject Inbound Connection

opensearchservice_reject_inbound_connection R Documentation

Allows the remote Amazon OpenSearch Service domain owner to reject an inbound cross-cluster connection request

Description

Allows the remote Amazon OpenSearch Service domain owner to reject an inbound cross-cluster connection request.

Usage

opensearchservice_reject_inbound_connection(ConnectionId)

Arguments

ConnectionId

[required] The unique identifier of the inbound connection to reject.

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$reject_inbound_connection(
  ConnectionId = "string"
)