listVerifiedEmailAddresses
inline suspend fun SesClient.listVerifiedEmailAddresses(crossinline block: ListVerifiedEmailAddressesRequest.Builder.() -> Unit): ListVerifiedEmailAddressesResponse
Deprecated. Use the ListIdentities
operation to list the email addresses and domains associated with your account.
Samples
fun main() {
//sampleStart
// The following example lists all email addresses that have been submitted for verification with
// Amazon SES
val resp = sesClient.listVerifiedEmailAddresses()
//sampleEnd
}