Module Values.TrialMinutesSource

Represents information about free trial device minutes for an AWS account.

Sourcetype nonrec t = {
  1. total : Double.t option;
    (*

    The total number of free trial minutes that the account started with.

    *)
  2. remaining : Double.t option;
    (*

    The number of free trial minutes remaining in the account.

    *)
}
Sourceval make : ?total:??? -> ?remaining:??? -> unit -> t
Sourceval to_value : t -> [> `Structure of (string * [> `Double of Double.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