I have used this GitHub as a base: https://github.com/danilop/LambdAuth
The LambdaAuth project worked well out of the box and I learned how to set up Cognito, Identity pools, Lambda, and DynamoDB tables. So currently I have everything setup on the AWS side of things. I have tested the Lambda functions and checked them with DynamoDB tables and all is well.
On the iOS side of things, I have my sign up and register view controllers created and I have added the AWS iOS SDK and all of its frameworks.
UPDATE: I have Lamdba functions that check usernames and passwords and add them to the database if they don't exist.
I have also created in Identity Pool which has the unauth and auth roles. After using Lambda to verify that the username is new and creates an entry in the db, then I switch from the unauth role to the auth role.
At that point I want to access the db and s3 for only that user.
I am wondering how to get started.
What are the next steps to connect ios to aws? The mobile hub demo is awful and doesn't give great examples.