Skip to content

Commit 48d6da8

Browse files
committed
Fix typo
1 parent 44f0855 commit 48d6da8

File tree

1 file changed

+4
-4
lines changed

1 file changed

+4
-4
lines changed

aws_lambda_powertools/utilities/parser/models/iot_core_crud_event.py

Lines changed: 4 additions & 4 deletions
Original file line numberDiff line numberDiff line change
@@ -4,20 +4,20 @@
44
from pydantic import BaseModel
55

66

7-
class AWSIoTCRUDEventOperation(str, enum.Enum):
7+
class IoTCRUDEventOperation(str, enum.Enum):
88
CREATED = "CREATED"
99
UPDATED = "UPDATED"
1010
DELETED = "DELETED"
1111

1212

13-
class AWSIoTCRUDEvent(BaseModel):
14-
"""The "Thing: created, updated, deleted" eventt"""
13+
class IoTCRUDEvent(BaseModel):
14+
"""The "Thing: created, updated, deleted" event"""
1515

1616
eventType: str
1717
eventId: str
1818
timestamp: int
1919

20-
operation: AWSIoTCRUDEventOperation
20+
operation: IoTCRUDEventOperation
2121

2222
thingId: str
2323

0 commit comments

Comments
 (0)