{
"$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-inbound-cross-cluster-search-connections-response-schema.json",
"title": "DescribeInboundCrossClusterSearchConnectionsResponse",
"description": "The result of a DescribeInboundCrossClusterSearchConnections request. Contains the list of connections matching the filter criteria.",
"type": "object",
"properties": {
"CrossClusterSearchConnections": {
"allOf": [
{
"$ref": "#/components/schemas/InboundCrossClusterSearchConnections"
},
{
"description": "Consists of list of InboundCrossClusterSearchConnection 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. "
}
]
}
}
}