forked from aws-powertools/powertools-lambda-python
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathsqs_event.py
148 lines (111 loc) · 5.13 KB
/
sqs_event.py
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
134
135
136
137
138
139
140
141
142
143
144
145
146
147
148
from typing import Dict, Iterator, Optional
from aws_lambda_powertools.utilities.data_classes.common import DictWrapper
class SQSRecordAttributes(DictWrapper):
@property
def aws_trace_header(self) -> Optional[str]:
"""Returns the AWS X-Ray trace header string."""
return self.get("AWSTraceHeader")
@property
def approximate_receive_count(self) -> str:
"""Returns the number of times a message has been received across all queues but not deleted."""
return self["ApproximateReceiveCount"]
@property
def sent_timestamp(self) -> str:
"""Returns the time the message was sent to the queue (epoch time in milliseconds)."""
return self["SentTimestamp"]
@property
def sender_id(self) -> str:
"""For an IAM user, returns the IAM user ID, For an IAM role, returns the IAM role ID"""
return self["SenderId"]
@property
def approximate_first_receive_timestamp(self) -> str:
"""Returns the time the message was first received from the queue (epoch time in milliseconds)."""
return self["ApproximateFirstReceiveTimestamp"]
@property
def sequence_number(self) -> Optional[str]:
"""The large, non-consecutive number that Amazon SQS assigns to each message."""
return self.get("SequenceNumber")
@property
def message_group_id(self) -> Optional[str]:
"""The tag that specifies that a message belongs to a specific message group.
Messages that belong to the same message group are always processed one by one, in a
strict order relative to the message group (however, messages that belong to different
message groups might be processed out of order)."""
return self.get("MessageGroupId")
@property
def message_deduplication_id(self) -> Optional[str]:
"""The token used for deduplication of sent messages.
If a message with a particular message deduplication ID is sent successfully, any messages sent
with the same message deduplication ID are accepted successfully but aren't delivered during
the 5-minute deduplication interval."""
return self.get("MessageDeduplicationId")
class SQSMessageAttribute(DictWrapper):
"""The user-specified message attribute value."""
@property
def string_value(self) -> Optional[str]:
"""Strings are Unicode with UTF-8 binary encoding."""
return self["stringValue"]
@property
def binary_value(self) -> Optional[str]:
"""Binary type attributes can store any binary data, such as compressed data, encrypted data, or images.
Base64-encoded binary data object"""
return self["binaryValue"]
@property
def data_type(self) -> str:
"""The message attribute data type. Supported types include `String`, `Number`, and `Binary`."""
return self["dataType"]
class SQSMessageAttributes(Dict[str, SQSMessageAttribute]):
def __getitem__(self, key: str) -> Optional[SQSMessageAttribute]:
item = super(SQSMessageAttributes, self).get(key)
return None if item is None else SQSMessageAttribute(item)
class SQSRecord(DictWrapper):
"""An Amazon SQS message"""
@property
def message_id(self) -> str:
"""A unique identifier for the message.
A messageId is considered unique across all AWS accounts for an extended period of time."""
return self["messageId"]
@property
def receipt_handle(self) -> str:
"""An identifier associated with the act of receiving the message.
A new receipt handle is returned every time you receive a message. When deleting a message,
you provide the last received receipt handle to delete the message."""
return self["receiptHandle"]
@property
def body(self) -> str:
"""The message's contents (not URL-encoded)."""
return self["body"]
@property
def attributes(self) -> SQSRecordAttributes:
"""A map of the attributes requested in ReceiveMessage to their respective values."""
return SQSRecordAttributes(self["attributes"])
@property
def message_attributes(self) -> SQSMessageAttributes:
"""Each message attribute consists of a Name, Type, and Value."""
return SQSMessageAttributes(self["messageAttributes"])
@property
def md5_of_body(self) -> str:
"""An MD5 digest of the non-URL-encoded message body string."""
return self["md5OfBody"]
@property
def event_source(self) -> str:
"""The AWS service from which the SQS record originated. For SQS, this is `aws:sqs`"""
return self["eventSource"]
@property
def event_source_arn(self) -> str:
"""The Amazon Resource Name (ARN) of the event source"""
return self["eventSourceARN"]
@property
def aws_region(self) -> str:
"""aws region eg: us-east-1"""
return self["awsRegion"]
class SQSEvent(DictWrapper):
"""SQS Event
Documentation:
--------------
- https://docs.aws.amazon.com/lambda/latest/dg/with-sqs.html
"""
@property
def records(self) -> Iterator[SQSRecord]:
for record in self["Records"]:
yield SQSRecord(record)