You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
When the ApproximateCreationDateTimePrecision is explicitly set for a DynamoDB table, the corresponding precision attribute is sent inside the DynamoDB Streams events. However, the StreamRecord class present in the SDK does not currently contain support for the ApproximateCreationDateTimePrecision attribute.
This results in two main issues:
The attribute is not parsed from the event, so downstream consumers cannot access the precision information.
If the ObjectMapper is configured to not ignore unknown properties, receiving the event with this attribute can cause deserialization errors.
Suggested Fix:
Please add the ApproximateCreationDateTimePrecision attribute to the StreamRecord class so that it is properly parsed from DynamoDB Streams events and available to consumers using the SDK.
The text was updated successfully, but these errors were encountered:
When the
ApproximateCreationDateTimePrecision
is explicitly set for a DynamoDB table, the correspondingprecision
attribute is sent inside the DynamoDB Streams events. However, theStreamRecord
class present in the SDK does not currently contain support for theApproximateCreationDateTimePrecision
attribute.This results in two main issues:
Suggested Fix:
Please add the
ApproximateCreationDateTimePrecision
attribute to theStreamRecord
class so that it is properly parsed from DynamoDB Streams events and available to consumers using the SDK.The text was updated successfully, but these errors were encountered: