Module Values.DescribeEndpointsRequestSource

Send a request with an empty body to the regional API endpoint to get your account API endpoint. Note that DescribeEndpoints is no longer required. We recommend that you send your requests directly to the regional endpoint instead.

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

    Optional. Max number of endpoints, up to twenty, that will be returned at one time.

    *)
  2. mode : DescribeEndpointsMode.t option;
    (*

    Optional field, defaults to DEFAULT. Specify DEFAULT for this operation to return your endpoints if any exist, or to create an endpoint for you and return it if one doesn't already exist. Specify GET_ONLY to return your endpoints if any exist, or an empty list if none exist.

    *)
  3. nextToken : string option;
    (*

    Use this string, provided with the response to a previous request, to request the next batch of endpoints.

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