Want to pass your AWS Certified Alexa Skill Builder - Specialty (AXS-C01) AXS-C01 exam in the very first attempt? Try Pass2lead! It is equally effective for both starters and IT professionals.
VCE
An Amazon Alexa interactive story skill needs to provide users with the option to resume the skill from where users left off when they last used the skill.
Where should the data be stored to ensure that the skill will start at the correct location?
A. In a JSON file along with the skill's AWS Lambda function
B. In Amazon DynamoDB
C. In the skill's session object
D. In the skills's request object
According to Amazon Alexa best practices, how should an Alexa Skill Builder prevent unintentional requests against a skill's backend when using AWS Lambda?
A. Ensure that the session ID provided by the request to Lambda is not already in use.
B. Rotate the Lambda ARN regularly to prevent others from using the service.
C. Retrieve the Application ID property from the request JSON and validate it against the Lambda environment variables.
D. Provide the Lambda trigger with the Application ID so that it validates on the ask trigger.
A skill contains a PlanMyTrip intent configured to require slots fromCity and toCity. It contains the following
interaction:
Alexa: What city are you leaving from?
User: I'm leaving from Seattle.
Alexa: You want to fly out of Seattle Tacoma International Airport, right?
User: Yes
Which of the following should the Builder use to confirm the value of the fromCity slot only? (Choose two.)
A. Use the Dialog.ConfirmSlot directive, including the full airport name in the outputSpeech object.
B. Use the Dialog.ConfirmIntent directive, including the full airport name in the updatedIntent object.
C. Use the Dialog.Delegate directive, including the full airport name in the updatedIntent object.
D. Use the Dialog.Delegate directive, including the full airport name in the outputSpeech object.
E. Use the Dialog.ElicitSlot directive, including the full airport name in the updatedIntent object.