Skip to main content

Reassigninput

The identity or governance group to which a policy violation is reassigned.

Properties

NameTypeDescriptionNotes
assignee_idstrThe unique identifier of the identity or governance group receiving the violation.[required]
assignee_typeEnum [ 'IDENTITY', 'GOVERNANCE_GROUP' ]The type of assignee receiving the violation.[required]
}

Example

from sailpoint.sod_violations.models.reassigninput import Reassigninput

reassigninput = Reassigninput(
assignee_id='3e07886555ed43cfb83c85c58d2016e6',
assignee_type='IDENTITY'
)

[Back to top]