We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent 4e738e9 commit 6c359d5Copy full SHA for 6c359d5
docs/content/utilities/parser.mdx
@@ -436,6 +436,5 @@ class EventBridgeEnvelope(BaseEnvelope): # highlight-line
436
437
1. We defined an envelope named `EventBridgeEnvelope` inheriting from `BaseEnvelope`
438
2. Implemented the `parse` abstract method taking `data` and `model` as parameters
439
-3. Then, we parsed the incoming data with our envelope model (EventBridgeModel)
440
-3.1. This confirms that data received conforms with how EventBridge wraps events
+3. Then, we parsed the incoming data with our envelope to confirm it matches EventBridge's structure defined in `EventBridgeModel`
441
4. Lastly, we call `_parse` from `BaseEnvelope` to parse the data in our envelope (.detail) using the customer model
0 commit comments