Module Values.DescribeBudgetActionHistoriesRequestSource

Describes a budget action history detail.

Sourcetype nonrec t = {
  1. accountId : AccountId.t;
  2. budgetName : BudgetName.t;
  3. actionId : ActionId.t;
    (*

    A system-generated universally unique identifier (UUID) for the action.

    *)
  4. timePeriod : TimePeriod.t option;
  5. maxResults : MaxResults.t option;
  6. nextToken : GenericString.t option;
}
Sourceval context_ : string
Sourceval make : ?timePeriod:??? -> ?maxResults:??? -> ?nextToken:??? -> accountId:AccountId.t -> budgetName:BudgetName.t -> actionId:ActionId.t -> unit -> t
Sourceval to_value : t -> [> `Structure of (string * [> `Integer of MaxResults.t | `String of AccountId.t | `Structure of (string * [> `Timestamp of GenericTimestamp.t ]) list ]) 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