File tree Expand file tree Collapse file tree 1 file changed +10
-0
lines changed
packages/event-handler/src/types Expand file tree Collapse file tree 1 file changed +10
-0
lines changed Original file line number Diff line number Diff line change @@ -161,6 +161,11 @@ type RouteOptions<T extends boolean | undefined = false> = {
161
161
162
162
// #region Events
163
163
164
+ /**
165
+ * Event type for AppSync Events.
166
+ *
167
+ * For strongly typed validation and parsing at runtime, check out the `@aws-lambda-powertools/parser` package.
168
+ */
164
169
type AppSyncEventsEvent = {
165
170
/**
166
171
* The `identity` field is marked as `unknown` because it varies based on the authentication type used in AppSync.
@@ -234,6 +239,9 @@ type AppSyncEventsEvent = {
234
239
* }
235
240
* ]
236
241
* }
242
+ *
243
+ * For strongly typed validation and parsing at runtime, check out the `@aws-lambda-powertools/parser` package.
244
+ *
237
245
* ```
238
246
*/
239
247
type AppSyncEventsPublishEvent = AppSyncEventsEvent & {
@@ -277,6 +285,8 @@ type AppSyncEventsPublishEvent = AppSyncEventsEvent & {
277
285
* "events": null
278
286
* }
279
287
* ```
288
+ *
289
+ * For strongly typed validation and parsing at runtime, check out the `@aws-lambda-powertools/parser` package.
280
290
*/
281
291
type AppSyncEventsSubscribeEvent = AppSyncEventsEvent & {
282
292
info : {
You can’t perform that action at this time.
0 commit comments