Skip to content

Commit

Permalink
fix(schema): add FunctionResponseTypes property for kinesis events (a…
Browse files Browse the repository at this point in the history
…wslabs#539)

Co-authored-by: Rúben Fonseca <fonseka@gmail.com>
  • Loading branch information
gsweetwood and rubenfonseca committed Jan 18, 2023
1 parent a89ed1a commit 3cff1ff
Show file tree
Hide file tree
Showing 4 changed files with 24 additions and 0 deletions.

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

7 changes: 7 additions & 0 deletions generate/sam-2016-10-31.json
Expand Up @@ -937,6 +937,13 @@
"Required": false,
"PrimitiveType": "Boolean",
"UpdateType": "Immutable"
},
"FunctionResponseTypes": {
"Documentation": "https://github.com/awslabs/serverless-application-model/blob/master/versions/2016-10-31.md#kinesis",
"Required": false,
"Type": "List",
"PrimitiveItemType": "String",
"UpdateType": "Immutable"
}
}
},
Expand Down
6 changes: 6 additions & 0 deletions schema/sam.go
Expand Up @@ -144743,6 +144743,12 @@ var SamSchema = `{
"Enabled": {
"type": "boolean"
},
"FunctionResponseTypes": {
"items": {
"type": "string"
},
"type": "array"
},
"StartingPosition": {
"type": "string"
},
Expand Down
6 changes: 6 additions & 0 deletions schema/sam.schema.json
Expand Up @@ -144738,6 +144738,12 @@
"Enabled": {
"type": "boolean"
},
"FunctionResponseTypes": {
"items": {
"type": "string"
},
"type": "array"
},
"StartingPosition": {
"type": "string"
},
Expand Down

0 comments on commit 3cff1ff

Please sign in to comment.