Module Values.NotificationWithSubscribersSource

A notification with subscribers. A notification can have one SNS subscriber and up to 10 email subscribers, for a total of 11 subscribers.

Sourcetype nonrec t = {
  1. notification : Notification.t;
    (*

    The notification that's associated with a budget.

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

    A list of subscribers who are subscribed to this notification.

    *)
}
Sourceval context_ : string
Sourceval make : 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 | `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