Module Values.InboxPlacementTrackingOptionSource

An object that contains information about the inbox placement data settings for a verified domain that’s associated with your Amazon Web Services account. This data is available only if you enabled the Deliverability dashboard for the domain.

Sourcetype nonrec t = {
  1. global : Enabled.t option;
    (*

    Specifies whether inbox placement data is being tracked for the domain.

    *)
  2. trackedIsps : IspNameList.t option;
    (*

    An array of strings, one for each major email provider that the inbox placement data applies to.

    *)
}
Sourceval make : ?global:??? -> ?trackedIsps:??? -> unit -> t
Sourceval to_value : t -> [> `Structure of (string * [> `Boolean of Enabled.t | `List of [> `String of IspName.t ] list ]) 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