This project demonstrates how to build an Alexa private skill that integrates with your Salesforce data, utilizing account linking and a personal voice code.
Deploying the Serverless App Repo project as-is results in an error during stack creation due to the recent Lambda runtime deprecation:
The runtime parameter of nodejs6.10 is no longer supported for creating or updating AWS Lambda functions. We recommend you use the new runtime (nodejs8.10) while creating or updating functions. (Service: AWSLambdaInternal; Status Code: 400; Error Code: InvalidParameterValueException; Request ID: 24019e8b-8f67-11e9-b68f-XXXXXX)
Correcting the Runtime parameter in the Lambda function definition in the stack template to target a newer runtime fixes this, i.e. Runtime: nodejs10.x or Runtime: nodejs8.10 .
Deploying the Serverless App Repo project as-is results in an error during stack creation due to the recent Lambda runtime deprecation:
Correcting the Runtime parameter in the Lambda function definition in the stack template to target a newer runtime fixes this, i.e.
Runtime: nodejs10.x
orRuntime: nodejs8.10
.