getAccountSendingEnabled
abstract suspend fun getAccountSendingEnabled(input: GetAccountSendingEnabledRequest = GetAccountSendingEnabledRequest { }): GetAccountSendingEnabledResponse
Returns the email sending status of the Amazon SES account for the current Region.
You can execute this operation no more than once per second.
Samples
fun main() {
//sampleStart
// The following example returns if sending status for an account is enabled. (true / false)
val resp = sesClient.getAccountSendingEnabled()
//sampleEnd
}