Skip to main content

CorrelationConfigAttributeAssignmentsInner

The attribute assignment of the correlation configuration.

Properties

NameTypeDescriptionNotes
var_propertystrThe property of the attribute assignment.[optional]
valuestrThe value of the attribute assignment.[optional]
operationEnum [ 'EQ' ]The operation of the attribute assignment.[optional]
complexboolWhether or not the it's a complex attribute assignment.[optional] [default to False]
ignore_caseboolWhether or not the attribute assignment should ignore case.[optional] [default to False]
match_modeEnum [ 'ANYWHERE', 'START', 'END' ]The match mode of the attribute assignment.[optional]
filter_stringstrThe filter string of the attribute assignment.[optional]
}

Example

from sailpoint.beta.models.correlation_config_attribute_assignments_inner import CorrelationConfigAttributeAssignmentsInner

correlation_config_attribute_assignments_inner = CorrelationConfigAttributeAssignmentsInner(
var_property='first_name',
value='firstName',
operation='EQ',
complex=False,
ignore_case=False,
match_mode='ANYWHERE',
filter_string='first_name == "John"'
)

[Back to top]