Values.SubscriberSourceThe subscriber to a budget notification. The subscriber consists of a subscription type and either an Amazon SNS topic or an email address. For example, an email subscriber has the following parameters: A subscriptionType of EMAIL An address of example@example.com
type nonrec t = {subscriptionType : SubscriptionType.t;The type of notification that Amazon Web Services sends to a subscriber.
*)address : SubscriberAddress.t;The address that Amazon Web Services sends budget notifications to, either an SNS topic or an email. When you create a subscriber, the value of Address can't contain line breaks.
*)}val to_value :
t ->
[> `Structure of
(string * [> `Enum of string | `String of SubscriberAddress.t ]) list ]