Skip to content

Commit 312830b

Browse files
committed
fix comments
1 parent 2032146 commit 312830b

File tree

1 file changed

+6
-9
lines changed

1 file changed

+6
-9
lines changed

aws_lambda_powertools/utilities/data_classes/kinesis_firehose_event.py

+6-9
Original file line numberDiff line numberDiff line change
@@ -33,19 +33,16 @@ class KinesisFirehoseResponseRecord:
3333
- https://docs.aws.amazon.com/firehose/latest/dev/data-transformation.html
3434
"""
3535

36-
"""Record ID; uniquely identifies this record within the current batch"""
36+
# Record ID; uniquely identifies this record within the current batch"""
3737
record_id: str
38-
"""processing result, supported value: Ok, Dropped, ProcessingFailed"""
38+
# Processing result, supported value: Ok, Dropped, ProcessingFailed"""
3939
result: Literal["Ok", "Dropped", "ProcessingFailed"]
40-
"""data blob, base64-encoded, optional at init. Allows pass in base64-encoded data directly or
41-
use either function like `data_from_text`, `data_from_json` to populate data"""
40+
# data blob, base64-encoded, optional at init. Allows pass in base64-encoded data directly or
41+
# use either function like `data_from_text`, `data_from_json` to populate data"""
4242
data: Optional[str] = None
43-
"""
44-
Optional: Metadata associated with this record; can contain partition keys
45-
- https://docs.aws.amazon.com/firehose/latest/dev/dynamic-partitioning.html
46-
"""
43+
# Optional: Metadata associated with this record; can contain partition keys
44+
# See - https://docs.aws.amazon.com/firehose/latest/dev/dynamic-partitioning.html
4745
metadata: Optional[KinesisFirehoseResponseRecordMetadata] = None
48-
"""Json data for caching json.dump result"""
4946
_json_data: Optional[Any] = None
5047
json_serializer: Callable = json.dumps
5148
json_deserializer: Callable = json.loads

0 commit comments

Comments
 (0)