Dear Guru's,
Trying to create an Autoattendant with powershell but one that uses a call flow that redirects to a Call Queue (voice App) instead of one or more menu options, or disconnect
In Teams Admin Portal it looks like this:

Put in powerhell I think it should be in the New-CsAutoAttendantCallFlow cmdlet but I can only use a variable for the name, greeting and menu. no redirect or disconnect as in the portal.
The code I am using is this to get the default call flow in an AA to send a call to a CQ while not in After Hours, but am missing the step how to get the call flow to redirect to the CSAAcallableEntity... Might need something in between but have no clue how and what.
# Call Flow
$greetingPrompt = New-CsAutoAttendantPrompt -TextToSpeechPrompt "Welcome to Contoso!"
$CaptainsRoomCQ = (Get-CsOnlineUser -Identity "TestCAllQueueRA@ez.be").ObjectId # one of the application instances associated to the Call Queue
$CaptainsRoomCE = New-CsAutoAttendantCallableEntity -Identity $CaptainsRoomCQ -Type applicationendpoint
$defaultCallFlow = New-CsAutoAttendantCallFlow -Name "Default call flow" -Greetings @($greetingPrompt) **-Menu $defaultMenu # Not menu but REDIRECT Call to a CallQueue**
# Create a new AA with the default call flow set to the Test Call Queue
$aa = New-CsAutoAttendant -Name "Test auto attendant 5" -DefaultCallFlow $defaultCallFlow -CallFlows @($afterHoursCallFlowNOTSHOWNHERE) -
CallHandlingAssociations @($afterHoursCallHandlingAssociationNOTSHOWNHERE) -LanguageId "en-US" -TimeZoneId "UTC"
