{
"$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 DescribeOutboundCrossClusterSearchConnections request. Contains the list of connections matching the filter criteria.",
"type": "object",
"properties": {
"CrossClusterSearchConnections": {
"allOf": [
{
"$ref": "#/components/schemas/OutboundCrossClusterSearchConnections"
},
{
"description": "Consists of list of OutboundCrossClusterSearchConnection 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. "
}
]
}
}
}