Skip to main content

CorrelationRuleAction

The action applied when a correlation rule matches.

Properties

NameTypeDescriptionNotes
typeEnum [ 'IDENTITY', 'ACCOUNT', 'GOVERNANCE_GROUP' ]The target owner type resolved by this action.[required]
payloadmap[string]objectAction-specific payload.[optional]
}

Example

from sailpoint.machine_identities.models.correlation_rule_action import CorrelationRuleAction

correlation_rule_action = CorrelationRuleAction(
type='IDENTITY',
payload={"identityId":"2c9180858082150f0180893dbaf44201"}
)

[Back to top]