Module Values.DescribeBudgetsRequestSource

Request of DescribeBudgets

Sourcetype nonrec t = {
  1. accountId : AccountId.t;
    (*

    The accountId that is associated with the budgets that you want to describe.

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

    An integer that represents how many budgets a paginated response contains. The default is 100.

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

    The pagination token that you include in your request to indicate the next set of results that you want to retrieve.

    *)
  4. showFilterExpression : NullableBoolean.t option;
    (*

    Specifies whether the response includes the filter expression associated with the budgets. By showing the filter expression, you can see detailed filtering logic applied to the budgets, such as Amazon Web Services services or tags that are being tracked.

    *)
}
Sourceval context_ : string
Sourceval make : ?maxResults:??? -> ?nextToken:??? -> ?showFilterExpression:??? -> accountId:AccountId.t -> unit -> t
Sourceval to_value : t -> [> `Structure of (string * [> `Boolean of NullableBoolean.t | `Integer of MaxResultsDescribeBudgets.t | `String of AccountId.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