Before I begin, the question I will ask may be considered 'newbie', however due to the lack of time I need help and cannot find a simple answer through most documentation provided. I have created an iOS application that currently is referencing an offline '*.json' file for its table. I have created a table in DynamoDB offered by AWS which best suits my need. The issue arises from me attempting to link the db into my application, AWS recommend utilising its SDK, or using additional tools, all of which I do not want to add.
Can someone please provide me with a brief description on how I can export a link in the form of a .json file for my db, and with it the security references I require.
Implementing AWS SDK will require me (correct me if I'm wrong) to rewrite my current 'table' manager which extracts information and passes such to various methods. Currently I am using the following method as shown in the example below, I would like to change this to reference the DynamoDB table I have made.
ThingsDataParser *thingsDataParser = [[ThingsDataParser alloc] init];
NSURL *url = [[NSBundle mainBundle] URLForResource:@"Table" withExtension:@"json"];
thingsArray = [thingsDataParser thingsFromJSONFile:url];