I am facing problem in downloading the Data from DynamoDB. I tried with Python SDK as well as with the AWS CLI (aws dynamodb scan --table-name Alarms) but every time, I am getting the same problem. Does anyone have any idea that what is the cause for that.
Output Get
{
"FRE": {
"S": "1"
},
"MB": {
"S": "0"
},
"TW": {
"S": "1"
},
"FNB": {
"S": "0"
},
"Date": {
"S": "2016-10-19 09:04:47.083456"
},
"TD2": {
"S": "1"
},
"TD1": {
"S": "1"
},
"TB": {
"S": "1"
}
}
Output Required
{
"Date": {
"S": "2016-10-19 09:04:47.083456"
},
"FRE": {
"S": "1"
},
"MB": {
"S": "0"
},
"TW": {
"S": "1"
},
"FNB": {
"S": "0"
},
"TD2": {
"S": "1"
},
"TD1": {
"S": "1"
},
"TB": {
"S": "1"
}
}
Thanks Waqas Ali Khan