Module Values.DescribeSourceServersRequestSource

Retrieves all SourceServers or multiple SourceServers by ID.

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

    Request to filter Source Servers list.

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

    Request to filter Source Servers list by maximum results.

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

    Request to filter Source Servers list by next token.

    *)
  4. accountID : AccountID.t option;
    (*

    Request to filter Source Servers list by Accoun ID.

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