Adding support for AT_SEQUENCE_NUMBER and AFTER_SEQUENCE_NUMBER
Adding support on DynamoDB Streams for AT_SEQUENCE_NUMBER and AFTER_SEQUENCE_NUMBER ShardIteratorType Change SequenceNumber type to string instead of int to match documentation
This commit is contained in:
parent
69d86cbd54
commit
7091be8eae
4 changed files with 64 additions and 3 deletions
|
|
@ -363,7 +363,7 @@ class StreamRecord(BaseModel):
|
|||
'dynamodb': {
|
||||
'StreamViewType': stream_type,
|
||||
'ApproximateCreationDateTime': datetime.datetime.utcnow().isoformat(),
|
||||
'SequenceNumber': seq,
|
||||
'SequenceNumber': str(seq),
|
||||
'SizeBytes': 1,
|
||||
'Keys': keys
|
||||
}
|
||||
|
|
|
|||
Loading…
Add table
Add a link
Reference in a new issue