Module Values.GetSendQuotaResponseSource

Represents your Amazon SES daily sending quota, maximum send rate, and the number of emails you have sent in the last 24 hours.

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

    The maximum number of emails the user is allowed to send in a 24-hour interval. A value of -1 signifies an unlimited quota.

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

    The maximum number of emails that Amazon SES can accept from the user's account per second. The rate at which Amazon SES accepts the user's messages might be less than the maximum send rate.

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

    The number of emails sent during the previous 24 hours.

    *)
}
Sourceand responseMetaData = unit
Sourceand t = {
  1. getSendQuotaResult : getSendQuotaResult;
  2. responseMetaData : responseMetaData;
}
Sourcetype error = [
  1. | `Unknown_operation_error of string * string option
]
Sourceval context_ : string
Sourceval make : ?max24HourSend:??? -> ?maxSendRate:??? -> ?sentLast24Hours:??? -> unit -> t
Sourceval error_of_json : 'a -> Yojson.Safe.t -> [> `Unknown_operation_error of 'a * string option ]
Sourceval error_of_xml : 'a -> Awso.Xml.t -> [> `Unknown_operation_error of 'a * string option ]
Sourceval error_to_json : error -> Yojson.Safe.t
Sourceval to_value : t -> [> `Structure of (string * [> `Structure of (string * [> `Double of Max24HourSend.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