Module Values.SubscriberSource

The recipient of AnomalySubscription notifications.

Sourcetype nonrec t = {
  1. address : SubscriberAddress.t option;
    (*

    The email address or SNS Amazon Resource Name (ARN). This depends on the Type.

    *)
  2. type_ : SubscriberType.t option;
    (*

    The notification delivery channel.

    *)
  3. status : SubscriberStatus.t option;
    (*

    Indicates if the subscriber accepts the notifications.

    *)
}
Sourceval make : ?address:??? -> ?type_:??? -> ?status:??? -> 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