Skip to main content

Attrsyncsourceattributeconfig

Specification of source attribute sync mapping configuration for an identity attribute

Properties

NameTypeDescriptionNotes
namestrName of the identity attribute[required]
display_namestrDisplay name of the identity attribute[required]
enabledboolDetermines whether or not the attribute is enabled for synchronization[required]
targetstrName of the source account attribute to which the identity attribute value will be synchronized if enabled[required]
}

Example

from sailpoint.sources.models.attrsyncsourceattributeconfig import Attrsyncsourceattributeconfig

attrsyncsourceattributeconfig = Attrsyncsourceattributeconfig(
name='email',
display_name='Email',
enabled=True,
target='mail'
)

[Back to top]