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.dimensions.models.dimensioncriteriakey import Dimensioncriteriakey

dimensioncriteriakey = Dimensioncriteriakey(
type='IDENTITY',
var_property='attribute.email'
)

[Back to top]