Module Values.GetServerDetailsRequestSource

Retrieves detailed information about a specified server.

Sourcetype nonrec t = {
  1. maxResults : MaxResult.t option;
    (*

    The maximum number of items to include in the response. The maximum value is 100.

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

    The token from a previous call that you use to retrieve the next set of results. For example, if a previous call to this action returned 100 items, but you set maxResults to 10. You'll receive a set of 10 results along with a token. You then use the returned token to retrieve the next set of 10.

    *)
  3. serverId : ServerId.t;
    (*

    The ID of the server.

    *)
}
Sourceval context_ : string
Sourceval make : ?maxResults:??? -> ?nextToken:??? -> serverId:ServerId.t -> unit -> t
Sourceval to_value : t -> [> `Structure of (string * [> `Integer of MaxResult.t | `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