deleteVerifiedEmailAddress
inline suspend fun SesClient.deleteVerifiedEmailAddress(crossinline block: DeleteVerifiedEmailAddressRequest.Builder.() -> Unit): DeleteVerifiedEmailAddressResponse
Deprecated. Use the DeleteIdentity
operation to delete email addresses and domains.
Samples
fun main() {
//sampleStart
// The following example deletes an email address from the list of identities that have been submitted
// for verification with Amazon SES
sesClient.deleteVerifiedEmailAddress {
emailAddress = "user@example.com"
}
//sampleEnd
}