Skip to main content

Rolemembershipidentity

A reference to an Identity in an IDENTITY_LIST role membership criteria.

Properties

NameTypeDescriptionNotes
typeDtotype[optional]
idstrIdentity id[optional]
namestrHuman-readable display name of the Identity.[optional]
alias_namestrUser name of the Identity[optional]
}

Example

from sailpoint.roles.models.rolemembershipidentity import Rolemembershipidentity

rolemembershipidentity = Rolemembershipidentity(
type='IDENTITY',
id='2c9180a46faadee4016fb4e018c20639',
name='Thomas Edison',
alias_name='t.edison'
)

[Back to top]