Module Values.DateIntervalSource

The time period of the request.

Sourcetype nonrec t = {
  1. start : YearMonthDay.t;
    (*

    The beginning of the time period. The start date is inclusive. For example, if start is 2017-01-01, Amazon Web Services retrieves cost and usage data starting at 2017-01-01 up to the end date. The start date must be equal to or no later than the current date to avoid a validation error.

    *)
  2. end_ : YearMonthDay.t;
    (*

    The end of the time period. The end date is exclusive. For example, if end is 2017-05-01, Amazon Web Services retrieves cost and usage data from the start date up to, but not including, 2017-05-01.

    *)
}
Sourceval context_ : string
Sourceval make : start:YearMonthDay.t -> end_:YearMonthDay.t -> unit -> t
Sourceval to_value : t -> [> `Structure of (string * [> `String of YearMonthDay.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