Skip to main content

RoleCriteriaKey

Refers to a specific Identity attribute, Account attibute, or Entitlement used in Role membership criteria

Properties

NameTypeDescriptionNotes
typeRoleCriteriaKeyType[required]
var_propertystrThe name of the attribute or entitlement to which the associated criteria applies.[required]
source_idstrID of the Source from which an account attribute or entitlement is drawn. Required if type is ACCOUNT or ENTITLEMENT[optional]
}

Example

from sailpoint.v3.models.role_criteria_key import RoleCriteriaKey

role_criteria_key = RoleCriteriaKey(
type='ACCOUNT',
var_property='attribute.email',
source_id='2c9180867427f3a301745aec18211519'
)

[Back to top]