Skip to main content

Emailstatusdto

Properties

NameTypeDescriptionNotes
idstrUnique identifier for the verified sender address[optional]
emailstrThe verified sender email address[optional]
is_verified_by_domainboolWhether the sender address is verified by domain[optional] [default to False]
verification_statusEnum [ 'PENDING', 'SUCCESS', 'FAILED', 'NA' ]The verification status of the sender address[optional]
regionstrThe AWS SES region the sender address is associated with[optional]
}

Example

from sailpoint.notifications.models.emailstatusdto import Emailstatusdto

emailstatusdto = Emailstatusdto(
id='',
email='sender@example.com',
is_verified_by_domain=False,
verification_status='SUCCESS',
region='us-east-1'
)

[Back to top]