CorrelationConfigAttributeAssignmentsInner
The attribute assignment of the correlation configuration.
Properties
Name | Type | Description | Notes |
---|---|---|---|
var_property | str | The property of the attribute assignment. | [optional] |
value | str | The value of the attribute assignment. | [optional] |
operation | Enum [ 'EQ' ] | The operation of the attribute assignment. | [optional] |
complex | bool | Whether or not the it's a complex attribute assignment. | [optional] [default to False] |
ignore_case | bool | Whether or not the attribute assignment should ignore case. | [optional] [default to False] |
match_mode | Enum [ 'ANYWHERE', 'START', 'END' ] | The match mode of the attribute assignment. | [optional] |
filter_string | str | The filter string of the attribute assignment. | [optional] |
} |
Example
from sailpoint.v2024.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"'
)