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
Copy file name to clipboardExpand all lines: docs/utilities/parser.md
+2-2Lines changed: 2 additions & 2 deletions
Display the source diff
Display the rich diff
Original file line number
Diff line number
Diff line change
@@ -211,8 +211,8 @@ You can use pre-built envelopes provided by the Parser to extract and parse spec
211
211
|**EventBridgeEnvelope**| 1. Parses data using `EventBridgeModel`. ``2. Parses `detail` key using your model`` and returns it. |`Model`|
212
212
|**SqsEnvelope**| 1. Parses data using `SqsModel`. ``2. Parses records in `body` key using your model`` and return them in a list. |`List[Model]`|
213
213
|**CloudWatchLogsEnvelope**| 1. Parses data using `CloudwatchLogsModel` which will base64 decode and decompress it. ``2. Parses records in `message` key using your model`` and return them in a list. |`List[Model]`|
214
-
|**KinesisDataStreamEnvelope**| 1. Parses data using `KinesisDataStreamModel` which will base64 decode it. ``2. Parses records in in `Records` key using your model`` and returns them in a list.|`List[Model]`|
215
-
|**KinesisFirehoseEnvelope**| 1. Parses data using `KinesisFirehoseModel` which will base64 decode it. ``2. Parses records in in` Records` key using your model`` and returns them in a list.|`List[Model]`|
214
+
|**KinesisDataStreamEnvelope**| 1. Parses data using `KinesisDataStreamModel` which will base64 decode it. ``2. Parses records in the `Records` key using your model`` and returns them in a list. |`List[Model]`|
215
+
|**KinesisFirehoseEnvelope**| 1. Parses data using `KinesisFirehoseModel` which will base64 decode it. ``2. Parses records in the `Records` key using your model`` and returns them in a list. |`List[Model]`|
216
216
|**SnsEnvelope**| 1. Parses data using `SnsModel`. ``2. Parses records in `body` key using your model`` and return them in a list. |`List[Model]`|
217
217
|**SnsSqsEnvelope**| 1. Parses data using `SqsModel`. `` 2. Parses SNS records in `body` key using `SnsNotificationModel`. `` 3. Parses data in `Message` key using your model and return them in a list. |`List[Model]`|
218
218
|**ApiGatewayV2Envelope**| 1. Parses data using `APIGatewayProxyEventV2Model`. ``2. Parses `body` key using your model`` and returns it. |`Model`|
0 commit comments