Module Values.ReputationOptionsSource

Enable or disable collection of reputation metrics for emails that you send using this configuration set in the current AWS Region.

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

    If true, tracking of reputation metrics is enabled for the configuration set. If false, tracking of reputation metrics is disabled for the configuration set.

    *)
  2. lastFreshStart : LastFreshStart.t option;
    (*

    The date and time (in Unix time) when the reputation metrics were last given a fresh start. When your account is given a fresh start, your reputation metrics are calculated starting from the date of the fresh start.

    *)
}
Sourceval make : ?reputationMetricsEnabled:??? -> ?lastFreshStart:??? -> unit -> t
Sourceval to_value : t -> [> `Structure of (string * [> `Boolean of Enabled.t | `Timestamp of LastFreshStart.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