handle()

in alexa/lambda/lib/functions/aws-sap-alexa-scp-solo/index.js [201:207]


    handle(handlerInput) {
        const speakOutput = 'Welcome to ' + process.env.SKILLNAME + ' created by AWS. How can I help?';
        return handlerInput.responseBuilder
            .speak(speakOutput)
            .reprompt(speakOutput)
            .getResponse();
    }