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
You should expect to see a response with an array of records. The Data attribute in an Kinesis record is Base64 encoded and compressed with the gzip format. You can examine the raw data from the command line using the following Unix commands:
89
+
90
+
`echo -n "<Content of Data>" | base64 -d | zcat`
91
+
92
+
The Base64 decoded and decompressed data is formatted as JSON with the following structure:
0 commit comments