Describe Outbound Cross Cluster Search Connections
elasticsearchservice_describe_outbound_cross_cluster_search_connections | R Documentation |
Lists all the outbound cross-cluster search connections for a source domain¶
Description¶
Lists all the outbound cross-cluster search connections for a source domain.
Usage¶
elasticsearchservice_describe_outbound_cross_cluster_search_connections(
Filters, MaxResults, NextToken)
Arguments¶
Filters
A list of filters used to match properties for outbound cross-cluster search connection. Available
Filter
names for this operation are:cross-cluster-search-connection-id
destination-domain-info.domain-name
destination-domain-info.owner-id
destination-domain-info.region
source-domain-info.domain-name
MaxResults
Set this value to limit the number of results returned. If not specified, defaults to 100.
NextToken
NextToken is sent in case the earlier API call results contain the NextToken. It is used for pagination.
Value¶
A list with the following syntax:
list(
CrossClusterSearchConnections = list(
list(
SourceDomainInfo = list(
OwnerId = "string",
DomainName = "string",
Region = "string"
),
DestinationDomainInfo = list(
OwnerId = "string",
DomainName = "string",
Region = "string"
),
CrossClusterSearchConnectionId = "string",
ConnectionAlias = "string",
ConnectionStatus = list(
StatusCode = "PENDING_ACCEPTANCE"|"VALIDATING"|"VALIDATION_FAILED"|"PROVISIONING"|"ACTIVE"|"REJECTED"|"DELETING"|"DELETED",
Message = "string"
)
)
),
NextToken = "string"
)