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-Attrsyncsourceattributeconfig  -Name email `
-DisplayName Email `
-Enabled true `
-Target mail
  • Convert the resource to JSON
$Attrsyncsourceattributeconfig | ConvertTo-JSON

[Back to top]