Skip to content

Commit 0189976

Browse files
committed
fix typos
1 parent ba6aa66 commit 0189976

File tree

1 file changed

+4
-4
lines changed

1 file changed

+4
-4
lines changed

Diff for: aws_lambda_powertools/utilities/data_classes/kinesis_firehose_event.py

+4-4
Original file line numberDiff line numberDiff line change
@@ -12,22 +12,22 @@ def shard_id(self) -> Optional[str]:
1212
return self.get("shardId")
1313

1414
@property
15-
def partition_key(self) -> Optional[str]
15+
def partition_key(self) -> Optional[str]:
1616
"""Kinesis stream partition key; present only when Kinesis Stream is source"""
1717
return self.get("partitionKey")
1818

1919
@property
20-
def approximate_arrival_timestamp(self) -> Optional[str]
20+
def approximate_arrival_timestamp(self) -> Optional[str]:
2121
"""Kinesis stream approximate arrival ISO timestamp; present only when Kinesis Stream is source"""
2222
return self.get("approximateArrivalTimestamp")
2323

2424
@property
25-
def sequence_number(self) -> Optional[str]
25+
def sequence_number(self) -> Optional[str]:
2626
"""Kinesis stream sequence number; present only when Kinesis Stream is source"""
2727
return self.get("sequenceNumber")
2828

2929
@property
30-
def subsequence_number(self) -> Optional[str]
30+
def subsequence_number(self) -> Optional[str]:
3131
"""Kinesis stream sub-sequence number; present only when Kinesis Stream is source
3232
3333
Note: this will only be present for Kinesis streams using record aggregation

0 commit comments

Comments
 (0)