Module Values.DomainDeliverabilityTrackingOptionSource

An object that contains information about the Deliverability dashboard subscription for a verified domain that you use to send email and currently has an active Deliverability dashboard subscription. If a Deliverability dashboard subscription is active for a domain, you gain access to reputation, inbox placement, and other metrics for the domain.

Sourcetype nonrec t = {
  1. domain : Domain.t option;
    (*

    A verified domain that’s associated with your AWS account and currently has an active Deliverability dashboard subscription.

    *)
  2. subscriptionStartDate : Timestamp.t option;
    (*

    The date, in Unix time format, when you enabled the Deliverability dashboard for the domain.

    *)
  3. inboxPlacementTrackingOption : InboxPlacementTrackingOption.t option;
    (*

    An object that contains information about the inbox placement data settings for the domain.

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