getSendQuota

abstract suspend fun getSendQuota(input: GetSendQuotaRequest = GetSendQuotaRequest { }): 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
}