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 44f0855 commit 48d6da8Copy full SHA for 48d6da8
aws_lambda_powertools/utilities/parser/models/iot_core_crud_event.py
@@ -4,20 +4,20 @@
4
from pydantic import BaseModel
5
6
7
-class AWSIoTCRUDEventOperation(str, enum.Enum):
+class IoTCRUDEventOperation(str, enum.Enum):
8
CREATED = "CREATED"
9
UPDATED = "UPDATED"
10
DELETED = "DELETED"
11
12
13
-class AWSIoTCRUDEvent(BaseModel):
14
- """The "Thing: created, updated, deleted" eventt"""
+class IoTCRUDEvent(BaseModel):
+ """The "Thing: created, updated, deleted" event"""
15
16
eventType: str
17
eventId: str
18
timestamp: int
19
20
- operation: AWSIoTCRUDEventOperation
+ operation: IoTCRUDEventOperation
21
22
thingId: str
23
0 commit comments