Skip to main content

DkimAttributes

DKIM attributes for a domain or identity

Properties

NameTypeDescriptionNotes
idstrUUID associated with domain to be verified[optional]
addressstrThe identity or domain address[optional]
dkim_enabledboolWhether or not DKIM has been enabled for this domain / identity[optional] [default to False]
dkim_tokens[]strThe tokens to be added to a DNS for verification[optional]
dkim_verification_statusstrThe current status if the domain /identity has been verified. Ie Success, Failed, Pending[optional]
}

Example

from sailpoint.beta.models.dkim_attributes import DkimAttributes

dkim_attributes = DkimAttributes(
id='123b45b0-aaaa-bbbb-a7db-123456a56abc',
address='[email protected]',
dkim_enabled=True,
dkim_tokens=[uq1m3jjk25ckd3whl4n7y46c56r5l6aq, u7pm38jky9ckdawhlsn7y4dcj6f5lpgq, uhpm3jjkjjckdkwhlqn7yw6cjer5tpay],
dkim_verification_status='Success'
)

[Back to top]