DescribeOutboundCrossClusterSearchConnectionsResponse

The result of a DescribeOutboundCrossClusterSearchConnections request. Contains the list of connections matching the filter criteria.

AnalyticsElasticsearchSearch

Properties

Name Type Description
CrossClusterSearchConnections object
NextToken object
View JSON Schema on GitHub

JSON Schema

openapi-describe-outbound-cross-cluster-search-connections-response-schema.json Raw ↑
{
  "$schema": "https://json-schema.org/draft/2020-12/schema",
  "$id": "https://raw.githubusercontent.com/api-evangelist/amazon-opensearch/refs/heads/main/json-schema/openapi-describe-outbound-cross-cluster-search-connections-response-schema.json",
  "title": "DescribeOutboundCrossClusterSearchConnectionsResponse",
  "description": "The result of a <code><a>DescribeOutboundCrossClusterSearchConnections</a></code> request. Contains the list of connections matching the filter criteria.",
  "type": "object",
  "properties": {
    "CrossClusterSearchConnections": {
      "allOf": [
        {
          "$ref": "#/components/schemas/OutboundCrossClusterSearchConnections"
        },
        {
          "description": "Consists of list of <code><a>OutboundCrossClusterSearchConnection</a></code> matching the specified filter criteria."
        }
      ]
    },
    "NextToken": {
      "allOf": [
        {
          "$ref": "#/components/schemas/NextToken"
        },
        {
          "description": "If more results are available and NextToken is present, make the next request to the same API with the received NextToken to paginate the remaining results. "
        }
      ]
    }
  }
}