Skip to main content

FullcampaignAllOfRoleCompositionCampaignInfoRemediatorRef

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.beta.models.fullcampaign_all_of_role_composition_campaign_info_remediator_ref import FullcampaignAllOfRoleCompositionCampaignInfoRemediatorRef

fullcampaign_all_of_role_composition_campaign_info_remediator_ref = FullcampaignAllOfRoleCompositionCampaignInfoRemediatorRef(
type='IDENTITY',
id='2c90ad2a70ace7d50170acf22ca90010',
name='Role Admin'
)

[Back to top]