Module Values.DescribeAppLicenseUsageRequestSource

Retrieves license included application usage information.

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

    Billing period for the usage record. Specify the value in yyyy-mm format. For example, for August 2025, use 2025-08.

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

    The maximum number of results to return.

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

    Token for pagination of results.

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