Skip to main content

RoleIdentity

A subset of the fields of an Identity which is a member of a Role.

Properties

NameTypeDescriptionNotes
idstrThe ID of the Identity[optional]
alias_namestrThe alias / username of the Identity[optional]
namestrThe human-readable display name of the Identity[optional]
emailstrEmail address of the Identity[optional]
role_assignment_sourceRoleAssignmentSourceType[optional]
}

Example

from sailpoint.v2024.models.role_identity import RoleIdentity

role_identity = RoleIdentity(
id='2c9180a46faadee4016fb4e018c20639',
alias_name='t.edison',
name='Thomas Edison',
email='[email protected]',
role_assignment_source='ACCESS_REQUEST'
)

[Back to top]