Module Values.DescribeSourceServersRequestSource

Lists all Source Servers or multiple Source Servers filtered by ID.

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

    A set of filters by which to return Source Servers.

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

    Maximum number of Source Servers to retrieve.

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

    The token of the next Source Server to retrieve.

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