Module Values.SendQuotaSource

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

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

    The maximum number of emails that you can send in the current AWS Region over a 24-hour period. This value is also called your sending quota.

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

    The maximum number of emails that you can send per second in the current AWS 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 Pinpoint account in the current AWS 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