Skip to main content

CampaignAllOfRoleCompositionCampaignInfoRemediatorRef

This determines who remediation tasks will be assigned to. Remediation tasks are created for each revoke decision on items in the campaign. The only legal remediator type is 'IDENTITY', and the chosen identity must be a Role Admin or Org Admin.

Properties

NameTypeDescriptionNotes
typeEnum [ 'IDENTITY' ]Legal Remediator Type[required]
idstrThe ID of the remediator.[required]
namestrThe name of the remediator.[optional] [readonly]
}

Example

from sailpoint.v2024.models.campaign_all_of_role_composition_campaign_info_remediator_ref import CampaignAllOfRoleCompositionCampaignInfoRemediatorRef

campaign_all_of_role_composition_campaign_info_remediator_ref = CampaignAllOfRoleCompositionCampaignInfoRemediatorRef(
type='IDENTITY',
id='2c90ad2a70ace7d50170acf22ca90010',
name='Role Admin'
)

[Back to top]