Module Values.DescribeOutboundConnectionsResponseSource

Contains a list of connections matching the filter criteria.

Sourcetype nonrec t = {
  1. connections : OutboundConnections.t option;
    (*

    List of outbound connections that match the filter criteria.

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

    When nextToken is returned, there are more results available. The value of nextToken is a unique pagination token for each page. Send the request again using the returned token to retrieve the next page.

    *)
}
Sourcetype nonrec error = [
  1. | `DisabledOperationException of DisabledOperationException.t
  2. | `InvalidPaginationTokenException of InvalidPaginationTokenException.t
  3. | `Unknown_operation_error of string * string option
]
Sourceval make : ?connections:??? -> ?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 * [> `Enum of string | `String of ConnectionId.t | `Structure of (string * [> `Enum of string | `String of ConnectionStatusMessage.t | `Structure of (string * [> `Enum of string | `String of OwnerId.t ]) list ]) 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