Module Values.GetDedicatedIpsRequestSource

A request to obtain more information about dedicated IP pools.

Sourcetype nonrec t = {
  1. poolName : PoolName.t option;
    (*

    The name of the IP pool that the dedicated IP address is associated with.

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

    A token returned from a previous call to GetDedicatedIps to indicate the position of the dedicated IP pool in the list of IP pools.

    *)
  3. pageSize : MaxItems.t option;
    (*

    The number of results to show in a single call to GetDedicatedIpsRequest. If the number of results is larger than the number you specified in this parameter, then the response includes a NextToken element, which you can use to obtain additional results.

    *)
}
Sourceval make : ?poolName:??? -> ?nextToken:??? -> ?pageSize:??? -> unit -> t
Sourceval to_value : t -> [> `Structure of (string * [> `Integer of MaxItems.t | `String of PoolName.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