Module Values.DescribeOutboundConnectionsRequestSource

Container for the parameters to the DescribeOutboundConnections operation.

Sourcetype nonrec t = {
  1. filters : FilterList.t option;
    (*

    List of filter names and values that you can use for requests.

    *)
  2. maxResults : MaxResults.t option;
    (*

    An optional parameter that specifies the maximum number of results to return. You can use nextToken to get the next page of results.

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

    If your initial DescribeOutboundConnections operation returns a nextToken, you can include the returned nextToken in subsequent DescribeOutboundConnections operations, which returns results in the next page.

    *)
}
Sourceval make : ?filters:??? -> ?maxResults:??? -> ?nextToken:??? -> unit -> t
Sourceval to_value : t -> [> `Structure of (string * [> `Integer of MaxResults.t | `List of [> `Structure of (string * [> `List of [> `String of NonEmptyString.t ] list | `String of NonEmptyString.t ]) 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