Fix creation time attribute in StreamRecord of aws-lambda

This commit is contained in:
Andrea Ratto
2018-03-21 11:15:56 +01:00
parent 3d5138fc4b
commit eedb1097a8

View File

@@ -90,7 +90,7 @@ export interface AttributeValue {
// Context
// http://docs.aws.amazon.com/amazondynamodb/latest/APIReference/API_streams_StreamRecord.html
export interface StreamRecord {
ApproximateCreationTime?: number;
ApproximateCreationDateTime?: number;
Keys?: { [key: string]: AttributeValue };
NewImage?: { [key: string]: AttributeValue };
OldImage?: { [key: string]: AttributeValue };