Module Values.CreateBudgetRequestSource

Request of CreateBudget

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

    The accountId that is associated with the budget.

    *)
  2. budget : Budget.t;
    (*

    The budget object that you want to create.

    *)
  3. notificationsWithSubscribers : NotificationWithSubscribersList.t option;
    (*

    A notification that you want to associate with a budget. A budget can have up to five notifications, and each notification can have one SNS subscriber and up to 10 email subscribers. If you include notifications and subscribers in your CreateBudget call, Amazon Web Services creates the notifications and subscribers for you.

    *)
  4. resourceTags : ResourceTagList.t option;
    (*

    An optional list of tags to associate with the specified budget. Each tag consists of a key and a value, and each key must be unique for the resource.

    *)
}
Sourceval context_ : string
Sourceval make : ?notificationsWithSubscribers:??? -> ?resourceTags:??? -> accountId:AccountId.t -> budget:Budget.t -> unit -> t
Sourceval to_value : t -> [> `Structure of (string * [> `List of [> `Structure of (string * [> `List of [> `Structure of (string * [> `Enum of string | `String of SubscriberAddress.t ]) list ] list | `String of ResourceTagKey.t | `Structure of (string * [> `Double of NotificationThreshold.t | `Enum of string ]) list ]) list ] list | `String of AccountId.t | `Structure of (string * Awso.Botodata.value) 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