deleteIdentity
inline suspend fun SesClient.deleteIdentity(crossinline block: DeleteIdentityRequest.Builder.() -> Unit): DeleteIdentityResponse
Deletes the specified identity (an email address or a domain) from the list of verified identities.
You can execute this operation no more than once per second.
Samples
fun main() {
//sampleStart
// The following example deletes an identity from the list of identities that have been submitted for
// verification with Amazon SES
sesClient.deleteIdentity {
identity = "user@example.com"
}
//sampleEnd
}