Module Values.SubscriberSource

The 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

Sourcetype nonrec t = {
  1. subscriptionType : SubscriptionType.t;
    (*

    The type of notification that Amazon Web Services sends to a subscriber.

    *)
  2. 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.

    *)
}
Sourceval context_ : string
Sourceval make : subscriptionType:SubscriptionType.t -> address:SubscriberAddress.t -> unit -> t
Sourceval to_value : t -> [> `Structure of (string * [> `Enum of string | `String of SubscriberAddress.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