removeGroupMember

Removes a member from a group.

Samples


fun main() { 
   //sampleStart 
   // The following command removes the specified member from the example. local domain.
val resp = directoryServiceDataClient.removeGroupMember {
    clientToken = "550e8400-e29b-41d4-a716-446655440000"
    directoryId = "d-12233abcde"
    groupName = "DevOps"
    memberName = "Pat Candella"
    memberRealm = "example.local"
} 
   //sampleEnd
}