Module Values.GetDelegationsRequestSource

Gets a list of delegations from an audit owner to a delegate.

Sourcetype nonrec t = {
  1. nextToken : Token.t option;
    (*

    The pagination token that's used to fetch the next set of results.

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

    Represents the maximum number of results on a page or for an API request call.

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