New-Adfs Ldap Attribute ToClaim Mapping

Creates a mapping between an attribute of an LDAP folder and an AD FS claim type.

Syntax

New-AdfsLdapAttributeToClaimMapping
   [-LdapAttribute] <String>
   [[-ClaimType] <String>]
   [<CommonParameters>]

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.

Examples

Example 1: Create a mapping of an LDAP directory attribute

PS C:\> $DisplayName = New-AdfsLdapAttributeToClaimMapping -LdapAttribute "displayName" -ClaimType "http://schemas.xmlsoap.org/ws/2005/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.

Required Parameters

-LdapAttribute

Specifies the attribute in the LDAP folder to which the claim type is mapped.

Type: String
Position: 0
Default value: None
Accept pipeline input: False
Accept wildcard characters: False

Optional Parameters

-ClaimType

Specifies the claim type to assign to the AD FS claim that contains the LDAP attribute value.

Type: String
Position: 1
Default value: None
Accept pipeline input: False
Accept wildcard characters: False