I'm looking to build a single Alexa skill that can answer multiple questions. Using the Skill Builder on the Amazon developer site, I've been able to create a custom intent that handles one question and returns a response, but I can't see how, using the Skill Builder, to add a second custom intent to the skill (I can see how to add the second intent, but not how to tie it to a second AWS). The Skill Builder allows you to enter only a single AWS apn number to process the request, but I want a different AWS to handle each different type of question.
So, my skill name is Ventura County Information. My invocation is ventura county. I want to be able to say Alexa ask ventura county where do I report for jury duty (this would call the GetJuryDuty intent, which would call the getJuryDutyFunction in one AWS) and return the location for Jury Duty. Or, I want to be able to say Alexa ask ventura county where do I get a copy of my birth certificate (this would call the GetBirthCertificate intent, which would call the getBirthCertificateFunction in a different AWS) and return the location for Birth Certificates. I just can't figure out how to tie each Intent to the proper AWS apn, when the Skill Builder only gives me one slot for the apn number.