Module Values.AutoAdjustDataSource

The parameters that determine the budget amount for an auto-adjusting budget.

Sourcetype nonrec t = {
  1. autoAdjustType : AutoAdjustType.t;
    (*

    The string that defines whether your budget auto-adjusts based on historical or forecasted data.

    *)
  2. historicalOptions : HistoricalOptions.t option;
    (*

    The parameters that define or describe the historical data that your auto-adjusting budget is based on.

    *)
  3. lastAutoAdjustTime : GenericTimestamp.t option;
    (*

    The last time that your budget was auto-adjusted.

    *)
}
Sourceval context_ : string
Sourceval make : ?historicalOptions:??? -> ?lastAutoAdjustTime:??? -> autoAdjustType:AutoAdjustType.t -> unit -> t
Sourceval to_value : t -> [> `Structure of (string * [> `Enum of string | `Structure of (string * [> `Integer of AdjustmentPeriod.t ]) list | `Timestamp of GenericTimestamp.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