Module Values.DescribeOutboundCrossClusterSearchConnectionsResponseSource

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

Sourcetype nonrec t = {
  1. crossClusterSearchConnections : OutboundCrossClusterSearchConnections.t option;
    (*

    Consists of list of OutboundCrossClusterSearchConnection matching the specified filter criteria.

    *)
  2. nextToken : NextToken.t option;
    (*

    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.

    *)
}
Sourcetype nonrec error = [
  1. | `DisabledOperationException of DisabledOperationException.t
  2. | `InvalidPaginationTokenException of InvalidPaginationTokenException.t
  3. | `Unknown_operation_error of string * string option
]
Sourceval make : ?crossClusterSearchConnections:??? -> ?nextToken:??? -> unit -> t
Sourceval error_of_json : string -> Yojson.Safe.t -> [> `DisabledOperationException of unit | `InvalidPaginationTokenException of unit | `Unknown_operation_error of string * string option ]
Sourceval error_of_xml : string -> Awso.Xml.t -> [> `DisabledOperationException of unit | `InvalidPaginationTokenException of unit | `Unknown_operation_error of string * string option ]
Sourceval error_to_json : error -> Yojson.Safe.t
Sourceval to_value : t -> [> `Structure of (string * [> `List of [> `Structure of (string * [> `String of CrossClusterSearchConnectionId.t | `Structure of (string * [> `Enum of string | `String of OwnerId.t ]) list ]) list ] list | `String of NextToken.t ]) list ]
Sourceval to_query : t -> Awso.Client.Query.t
Sourceval of_xml : Awso.Xml.t -> t
Sourceval of_string : string -> t
Sourceval of_json : Yojson.Safe.t -> t
Sourceval to_json : t -> Yojson.Safe.t