Skip to main content

CorrelationConfigAttributeAssignmentsInner

Properties

NameTypeDescriptionNotes
PropertyStringThe property of the attribute assignment.[optional]
ValueStringThe value of the attribute assignment.[optional]
OperationEnum [ "EQ" ]The operation of the attribute assignment.[optional]
ComplexBooleanWhether or not the it's a complex attribute assignment.[optional] [default to $false]
IgnoreCaseBooleanWhether or not the attribute assignment should ignore case.[optional] [default to $false]
MatchModeEnum [ "ANYWHERE", "START", "END" ]The match mode of the attribute assignment.[optional]
FilterStringStringThe filter string of the attribute assignment.[optional]

Examples

  • Prepare the resource
$CorrelationConfigAttributeAssignmentsInner = Initialize-PSSailpoint.V2024CorrelationConfigAttributeAssignmentsInner  -Property first_name `
-Value firstName `
-Operation EQ `
-Complex false `
-IgnoreCase false `
-MatchMode ANYWHERE `
-FilterString first_name == "John"
  • Convert the resource to JSON
$CorrelationConfigAttributeAssignmentsInner | ConvertTo-JSON

[Back to top]