Files
developer.sailpoint.com/docs/tools/sdk/python/Reference/V3/Models/EventAttributes.md
2025-02-20 12:59:19 -05:00

1.2 KiB

id, title, pagination_label, sidebar_label, sidebar_class_name, keywords, slug, tags
id title pagination_label sidebar_label sidebar_class_name keywords slug tags
event-attributes EventAttributes EventAttributes EventAttributes pythonsdk
python
Python
sdk
EventAttributes
EventAttributes
/tools/sdk/python/v3/models/event-attributes
SDK
Software Development Kit
EventAttributes
EventAttributes

EventAttributes

Attributes related to an IdentityNow ETS event

Properties

Name Type Description Notes
id str The unique ID of the trigger [required]
filter_ str JSON path expression that will limit which events the trigger will fire on [optional]
description str Description of the event trigger [optional]
attribute_to_filter str The attribute to filter on [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'
)

[Back to top]