getIdentityNotificationAttributes
inline suspend fun SesClient.getIdentityNotificationAttributes(crossinline block: GetIdentityNotificationAttributesRequest.Builder.() -> Unit): GetIdentityNotificationAttributesResponse
Given a list of verified identities (email addresses and/or domains), returns a structure describing identity notification attributes.
This operation is throttled at one request per second and can only get notification attributes for up to 100 identities at a time.
For more information about using notifications with Amazon SES, see the Amazon SES Developer Guide.
Samples
fun main() {
//sampleStart
// The following example returns the notification attributes for an identity
val resp = sesClient.getIdentityNotificationAttributes {
identities = listOf<String>(
"example.com"
)
}
//sampleEnd
}