From bfd190b3ad41b458c61aaf984952f4dcc9a62e7f Mon Sep 17 00:00:00 2001 From: Forrest Jordan Date: Fri, 26 Feb 2016 09:30:35 -0600 Subject: [PATCH] Add ApproximateArrivalTimestamp --- kinesis.go | 7 ++++--- 1 file changed, 4 insertions(+), 3 deletions(-) diff --git a/kinesis.go b/kinesis.go index 410a3e2..98ff257 100644 --- a/kinesis.go +++ b/kinesis.go @@ -383,9 +383,10 @@ func (kinesis *Kinesis) GetShardIterator(args *RequestArgs) (resp *GetShardItera // GetNextRecordsRecords stores the information that provides by GetNextRecordsResp type GetRecordsRecords struct { - Data []byte - PartitionKey string - SequenceNumber string + ApproximateArrivalTimestamp float64 + Data []byte + PartitionKey string + SequenceNumber string } func (r GetRecordsRecords) GetData() []byte {