Module Values.GetApiKeysRequestSource

A request to get information about the current ApiKeys resource.

Sourcetype nonrec t = {
  1. position : String_.t option;
    (*

    The current pagination position in the paged result set.

    *)
  2. limit : NullableInteger.t option;
    (*

    The maximum number of returned results per page. The default value is 25 and the maximum value is 500.

    *)
  3. nameQuery : String_.t option;
    (*

    The name of queried API keys.

    *)
  4. customerId : String_.t option;
    (*

    The identifier of a customer in Amazon Web Services Marketplace or an external system, such as a developer portal.

    *)
  5. includeValues : NullableBoolean.t option;
    (*

    A boolean flag to specify whether (true) or not (false) the result contains key values.

    *)
}
Sourceval make : ?position:??? -> ?limit:??? -> ?nameQuery:??? -> ?customerId:??? -> ?includeValues:??? -> unit -> t
Sourceval to_value : t -> [> `Structure of (string * [> `Boolean of NullableBoolean.t | `Integer of NullableInteger.t | `String of String_.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