Module Values.SendQuotaSource

An object that contains information about the per-day and per-second sending limits for your Amazon SES account in the current Amazon Web Services Region.

Sourcetype nonrec t = {
  1. max24HourSend : Max24HourSend.t option;
    (*

    The maximum number of emails that you can send in the current Amazon Web Services Region over a 24-hour period. A value of -1 signifies an unlimited quota. (This value is also referred to as your sending quota.)

    *)
  2. maxSendRate : MaxSendRate.t option;
    (*

    The maximum number of emails that you can send per second in the current Amazon Web Services Region. This value is also called your maximum sending rate or your maximum TPS (transactions per second) rate.

    *)
  3. sentLast24Hours : SentLast24Hours.t option;
    (*

    The number of emails sent from your Amazon SES account in the current Amazon Web Services Region over the past 24 hours.

    *)
}
Sourceval make : ?max24HourSend:??? -> ?maxSendRate:??? -> ?sentLast24Hours:??? -> unit -> t
Sourceval to_value : t -> [> `Structure of (string * [> `Double of Max24HourSend.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