Skip to main content

EventAttributes

Properties

NameTypeDescriptionNotes
IdStringThe unique ID of the trigger[required]
VarFilterStringJSON path expression that will limit which events the trigger will fire on[optional]
DescriptionStringDescription of the event trigger[optional]
AttributeToFilterStringThe attribute to filter on[optional]
FormDefinitionIdStringForm definition's unique identifier.[optional]

Examples

  • Prepare the resource
$EventAttributes = Initialize-PSSailpoint.V3EventAttributes  -Id idn:identity-attributes-changed `
-VarFilter $.changes[?(@.attribute == 'manager')] `
-Description Triggered when an identity's manager attribute changes `
-AttributeToFilter LifecycleState `
-FormDefinitionId Admin_Access_Request_Form
  • Convert the resource to JSON
$EventAttributes | ConvertTo-JSON

[Back to top]