Skip to main content

Appliedcontrolcreate

Data needed to apply a compensating control to a policy violation.

Properties

NameTypeDescriptionNotes
controlstrThe unique identifier of the compensating control to apply.[required]
commentsstrOptional comments to capture when applying the control.[optional]
}

Example

from sailpoint.sod_violations.models.appliedcontrolcreate import Appliedcontrolcreate

appliedcontrolcreate = Appliedcontrolcreate(
control='3e07886555ed43cfb83c85c58d2016e6',
comments='Some comments about the applied control'
)

[Back to top]