Skip to main content

EventAttributes

Attributes related to an IdentityNow ETS event

Properties

NameTypeDescriptionNotes
idstrThe unique ID of the trigger[required]
filter_strJSON path expression that will limit which events the trigger will fire on[optional]
descriptionstrDescription of the event trigger[optional]
attribute_to_filterstrThe attribute to filter on[optional]
form_definition_idstrForm definition's unique identifier.[optional]
}

Example

from sailpoint.v3.models.event_attributes import EventAttributes

event_attributes = EventAttributes(
id='idn:identity-attributes-changed',
filter_='$.changes[?(@.attribute == 'manager')]',
description='Triggered when an identity's manager attribute changes',
attribute_to_filter='LifecycleState',
form_definition_id='Admin_Access_Request_Form'
)

[Back to top]