Module Values.CreateNotificationRequestSource

Request of CreateNotification

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

    The accountId that is associated with the budget that you want to create a notification for.

    *)
  2. budgetName : BudgetName.t;
    (*

    The name of the budget that you want Amazon Web Services to notify you about. Budget names must be unique within an account.

    *)
  3. notification : Notification.t;
    (*

    The notification that you want to create.

    *)
  4. subscribers : Subscribers.t;
    (*

    A list of subscribers that you want to associate with the notification. Each notification can have one SNS subscriber and up to 10 email subscribers.

    *)
}
Sourceval context_ : string
Sourceval make : accountId:AccountId.t -> budgetName:BudgetName.t -> notification:Notification.t -> subscribers:Subscribers.t -> unit -> t
Sourceval to_value : t -> [> `Structure of (string * [> `List of [> `Structure of (string * [> `Enum of string | `String of SubscriberAddress.t ]) list ] list | `String of AccountId.t | `Structure of (string * [> `Double of NotificationThreshold.t | `Enum of string ]) 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