getSendQuota
inline suspend fun SesClient.getSendQuota(crossinline block: GetSendQuotaRequest.Builder.() -> Unit): GetSendQuotaResponse
Provides the sending limits for the Amazon SES account.
You can execute this operation no more than once per second.
Samples
fun main() {
//sampleStart
// The following example returns the Amazon SES sending limits for an AWS account
val resp = sesClient.getSendQuota()
//sampleEnd
}