New-AdfsLdapAttributeToClaimMapping
New-AdfsLdapAttributeToClaimMapping is accessible with the help of adfs module. To install adfs on your system please refer to this adfs.
Synopsis
Creates a mapping between an attribute of an LDAP folder and an AD FS claim type.
Description
The New-AdfsLdapAttributeToClaimMapping cmdlet creates a mapping between an attribute of the Lightweight Directory Access Protocol (LDAP) folder and an Active Directory Federation Services (AD FS) claim type. Mappings make it possible for LDAP attributes to be available for claim rule processing in AD FS.
Parameters
-ClaimType
Specifies the claim type to assign to the AD FS claim that contains the LDAP attribute value.
Required? false
Position? 2
Default value none
Accept pipeline input? false
Accept wildcard characters? false
-LdapAttribute <String>
Specifies the attribute in the LDAP folder to which the claim type is mapped.
Required? true
Position? 1
Default value none
Accept pipeline input? false
Accept wildcard characters? false
Syntax
New-AdfsLdapAttributeToClaimMapping [-LdapAttribute] <String> [[-ClaimType] <String>] [<CommonParameters>]
——————–Example 1——————–
Create a mapping of an LDAP directory attribute
PS C:>$DisplayName = New-AdfsLdapAttributeToClaimMapping -LdapAttribute “displayName” -ClaimType “http://schemas.xmlsoap.org/ws/2020/05/identity/claims/displayname”
This command creates a mapping of an LDAP directory attribute to a claim type. The command stores the mapping in the $DisplayName variable for use with other cmdlets.
To see this cmdlet as part of creating an LDAP local claims provider trust, see the Add-AdfsLocalClaimsProviderTrust cmdlet.
You can check the Version, CommandType and Source of this cmdlet by giving below command.
Get-Command New-AdfsLdapAttributeToClaimMapping
You can also read about
- Add-AdfsLocalClaimsProviderTrust