You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
Hi I'd like a way to save manual intervention so users of don't have to use cloudformation - I want to be able to enable the alexa trigger (or any really) as part of the configuration upload to lambda.. take for example this template from lambda:
Hi I'd like a way to save manual intervention so users of don't have to use cloudformation - I want to be able to enable the alexa trigger (or any really) as part of the configuration upload to lambda.. take for example this template from lambda:
AWSTemplateFormatVersion: '2010-09-09'
Transform: 'AWS::Serverless-2016-10-31'
Description: An AWS Serverless Specification template describing your function.
Resources:
helloworldalexa:
Type: 'AWS::Serverless::Function'
Properties:
Handler: 'example.HelloWorldAlexaFunction::hello'
Runtime: java8
CodeUri: .
Description: ''
MemorySize: 256
Timeout: 60
Role: 'arn:aws:iam::XXXXXXXXX:role/lambda_basic_execution'
Events:
AlexaSkillEvent:
Type: AlexaSkill
Currently I have to log into the console after upload/deploy and set this manually.
The text was updated successfully, but these errors were encountered: