Skip to main content

AttrSyncSourceAttributeConfig

Properties

NameTypeDescriptionNotes
NameStringName of the identity attribute[required]
DisplayNameStringDisplay name of the identity attribute[required]
EnabledBooleanDetermines whether or not the attribute is enabled for synchronization[required]
TargetStringName of the source account attribute to which the identity attribute value will be synchronized if enabled[required]

Examples

  • Prepare the resource
$AttrSyncSourceAttributeConfig = Initialize-PSSailpoint.V2024AttrSyncSourceAttributeConfig  -Name email `
-DisplayName Email `
-Enabled true `
-Target mail
  • Convert the resource to JSON
$AttrSyncSourceAttributeConfig | ConvertTo-JSON

[Back to top]