Describe Outbound Connections
| opensearchservice_describe_outbound_connections | R Documentation |
Lists all the outbound cross-cluster connections for a local (source) Amazon OpenSearch Service domain¶
Description¶
Lists all the outbound cross-cluster connections for a local (source) Amazon OpenSearch Service domain. For more information, see Cross-cluster search for Amazon OpenSearch Service.
Usage¶
Arguments¶
FiltersList of filter names and values that you can use for requests.
MaxResultsAn optional parameter that specifies the maximum number of results to return. You can use
nextTokento get the next page of results.NextTokenIf your initial
describe_outbound_connectionsoperation returns anextToken, you can include the returnednextTokenin subsequentdescribe_outbound_connectionsoperations, which returns results in the next page.
Value¶
A list with the following syntax:
list(
Connections = list(
list(
LocalDomainInfo = list(
AWSDomainInformation = list(
OwnerId = "string",
DomainName = "string",
Region = "string"
)
),
RemoteDomainInfo = list(
AWSDomainInformation = list(
OwnerId = "string",
DomainName = "string",
Region = "string"
)
),
ConnectionId = "string",
ConnectionAlias = "string",
ConnectionStatus = list(
StatusCode = "VALIDATING"|"VALIDATION_FAILED"|"PENDING_ACCEPTANCE"|"APPROVED"|"PROVISIONING"|"ACTIVE"|"REJECTING"|"REJECTED"|"DELETING"|"DELETED",
Message = "string"
),
ConnectionMode = "DIRECT"|"VPC_ENDPOINT",
ConnectionProperties = list(
Endpoint = "string",
CrossClusterSearch = list(
SkipUnavailable = "ENABLED"|"DISABLED"
)
)
)
),
NextToken = "string"
)