Skip to main content

DimensionCriteriaKey

Refers to a specific Identity attribute used in Dimension membership criteria.

Properties

NameTypeDescriptionNotes
typeDimensionCriteriaKeyType[required]
var_propertystrThe name of the identity attribute to which the associated criteria applies.[required]
}

Example

from sailpoint.v2024.models.dimension_criteria_key import DimensionCriteriaKey

dimension_criteria_key = DimensionCriteriaKey(
type='IDENTITY',
var_property='attribute.email'
)

[Back to top]