Module Values.BounceSource

Information about a Bounce event.

Sourcetype nonrec t = {
  1. bounceType : BounceType.t option;
    (*

    The type of the bounce, as determined by SES. Can be one of UNDETERMINED, TRANSIENT, or PERMANENT

    *)
  2. bounceSubType : BounceSubType.t option;
    (*

    The subtype of the bounce, as determined by SES.

    *)
  3. diagnosticCode : DiagnosticCode.t option;
    (*

    The status code issued by the reporting Message Transfer Authority (MTA). This field only appears if a delivery status notification (DSN) was attached to the bounce and the Diagnostic-Code was provided in the DSN.

    *)
}
Sourceval make : ?bounceType:??? -> ?bounceSubType:??? -> ?diagnosticCode:??? -> unit -> t
Sourceval to_value : t -> [> `Structure of (string * [> `Enum of string | `String of BounceSubType.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