Module Values.DomainInfosSource

Contains a paginated collection of DomainInfo structures.

Sourcetype nonrec t = {
  1. domainInfos : DomainInfoList.t option;
    (*

    A list of DomainInfo structures.

    *)
  2. nextPageToken : PageToken.t option;
    (*

    If a NextPageToken was returned by a previous call, there are more results available. To retrieve the next page of results, make the call again using the returned token in nextPageToken. Keep all other arguments unchanged. The configured maximumPageSize determines how many results can be returned in a single call.

    *)
}
Sourcetype nonrec error = [
  1. | `OperationNotPermittedFault of OperationNotPermittedFault.t
  2. | `Unknown_operation_error of string * string option
]
Sourceval make : ?domainInfos:??? -> ?nextPageToken:??? -> unit -> t
Sourceval error_of_json : string -> Yojson.Safe.t -> [> `OperationNotPermittedFault of OperationNotPermittedFault.t | `Unknown_operation_error of string * string option ]
Sourceval error_of_xml : string -> Awso.Xml.t -> [> `OperationNotPermittedFault of OperationNotPermittedFault.t | `Unknown_operation_error of string * string option ]
Sourceval error_to_json : error -> Yojson.Safe.t
Sourceval to_value : t -> [> `Structure of (string * [> `List of [> `Structure of (string * [> `Enum of string | `String of DomainName.t ]) list ] list | `String of PageToken.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