Skip to content

Commit

Permalink
fix(alexa): use the correct SkillId field (awslabs#613)
Browse files Browse the repository at this point in the history
  • Loading branch information
rubenfonseca committed Aug 11, 2023
1 parent 0a8501f commit 0841bbe
Show file tree
Hide file tree
Showing 4 changed files with 8 additions and 21 deletions.

Some generated files are not rendered by default. Learn more about how customized files appear on GitHub.

5 changes: 2 additions & 3 deletions generate/sam-2016-10-31.json
Original file line number Diff line number Diff line change
Expand Up @@ -1459,11 +1459,10 @@
"AWS::Serverless::Function.AlexaSkillEvent": {
"Documentation": "https://github.com/awslabs/serverless-application-model/blob/master/versions/2016-10-31.md#alexaskill",
"Properties": {
"Variables": {
"SkillId": {
"Documentation": "https://github.com/awslabs/serverless-application-model/blob/master/versions/2016-10-31.md#alexaskill",
"Required": false,
"Type": "Map",
"PrimitiveItemType": "String",
"PrimitiveType": "String",
"UpdateType": "Immutable"
}
}
Expand Down
10 changes: 2 additions & 8 deletions schema/sam.go
Original file line number Diff line number Diff line change
Expand Up @@ -183599,14 +183599,8 @@ var SamSchema = `{
"AWS::Serverless::Function.AlexaSkillEvent": {
"additionalProperties": false,
"properties": {
"Variables": {
"additionalProperties": true,
"patternProperties": {
"^[a-zA-Z0-9]+$": {
"type": "string"
}
},
"type": "object"
"SkillId": {
"type": "string"
}
},
"type": "object"
Expand Down
10 changes: 2 additions & 8 deletions schema/sam.schema.json
Original file line number Diff line number Diff line change
Expand Up @@ -183594,14 +183594,8 @@
"AWS::Serverless::Function.AlexaSkillEvent": {
"additionalProperties": false,
"properties": {
"Variables": {
"additionalProperties": true,
"patternProperties": {
"^[a-zA-Z0-9]+$": {
"type": "string"
}
},
"type": "object"
"SkillId": {
"type": "string"
}
},
"type": "object"
Expand Down

0 comments on commit 0841bbe

Please sign in to comment.