getIdentityMailFromDomainAttributes
abstract suspend fun getIdentityMailFromDomainAttributes(input: GetIdentityMailFromDomainAttributesRequest): GetIdentityMailFromDomainAttributesResponse
Returns the custom MAIL FROM attributes for a list of identities (email addresses : domains).
This operation is throttled at one request per second and can only get custom MAIL FROM attributes for up to 100 identities at a time.
Samples
fun main() {
//sampleStart
// The following example returns the custom MAIL FROM attributes for an identity
val resp = sesClient.getIdentityMailFromDomainAttributes {
identities = listOf<String>(
"example.com"
)
}
//sampleEnd
}