Skip to content

Commit ccd2a00

Browse files
committed
docs: add CW Logs as a supported envelope
1 parent d07db54 commit ccd2a00

File tree

1 file changed

+1
-0
lines changed

1 file changed

+1
-0
lines changed

docs/content/utilities/parser.mdx

+1
Original file line numberDiff line numberDiff line change
@@ -294,6 +294,7 @@ Envelope name | Behaviour | Return
294294
**DynamoDBStreamEnvelope** | 1. Parses data using `DynamoDBStreamModel`. <br/> 2. Parses records in `NewImage` and `OldImage` keys using your model. <br/> 3. Returns a list with a dictionary containing `NewImage` and `OldImage` keys | `List[Dict[str, Optional[Model]]]`
295295
**EventBridgeEnvelope** | 1. Parses data using `EventBridgeModel`. <br/> 2. Parses `detail` key using your model and returns it. | `Model`
296296
**SqsEnvelope** | 1. Parses data using `SqsModel`. <br/> 2. Parses records in `body` key using your model and return them in a list. | `List[Model]`
297+
**CloudWatchLogsEnvelope** | 1. Parses data using `CloudwatchLogsModel` which will base64 decode and decompress it. <br/> 2. Parses records in `message` key using your model and return them in a list. | `List[Model]`
297298

298299
### Bringing your own envelope
299300

0 commit comments

Comments
 (0)