Module Values.PutEmailIdentityFeedbackAttributesRequestSource

A request to set the attributes that control how bounce and complaint events are processed.

Sourcetype nonrec t = {
  1. emailIdentity : Identity.t;
    (*

    The email identity.

    *)
  2. emailForwardingEnabled : Enabled.t option;
    (*

    Sets the feedback forwarding configuration for the identity. If the value is true, you receive email notifications when bounce or complaint events occur. These notifications are sent to the address that you specified in the Return-Path header of the original email. You're required to have a method of tracking bounces and complaints. If you haven't set up another mechanism for receiving bounce or complaint notifications (for example, by setting up an event destination), you receive an email notification when these events occur (even if this setting is disabled).

    *)
}
Sourceval context_ : string
Sourceval make : ?emailForwardingEnabled:??? -> emailIdentity:Identity.t -> unit -> t
Sourceval to_value : t -> [> `Structure of (string * [> `Boolean of Enabled.t | `String of Identity.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