Skip to main content

AttrSyncSource

Target source for attribute synchronization.

Properties

NameTypeDescriptionNotes
typeEnum [ 'SOURCE' ]DTO type of target source for attribute synchronization.[optional]
idstrID of target source for attribute synchronization.[optional]
namestrHuman-readable name of target source for attribute synchronization.[optional]
}

Example

from sailpoint.v2024.models.attr_sync_source import AttrSyncSource

attr_sync_source = AttrSyncSource(
type='SOURCE',
id='2c9180835d191a86015d28455b4b232a',
name='HR Active Directory'
)

[Back to top]