Setting up Amazon Web Services for Unity
To get started with using amazon web services we will need to google aws unity or go to(https://docs.aws.amazon.com/mobile/sdkforunity/developerguide/setup-unity.html)
First step we need to set up a AWS(Amazon Webservices) Account (https://aws.amazon.com/)

Then we go to the link in this section, this will download a zip file. Once that has downloaded unzip the files at least the AWSSDK.S3 file, this will be the one we will be using for now.

Last one in the image, last few number may differ at a later date due for version differences.
Then go to your unity program that you will be using AWS in and open the S3 unityPackage file
Now that we have an account created and the AWS plugin downloaded and in our project it is time to set up our AWSManager
So to start we need to create ourselves a script, call it AWSManager and open it,
in it we will need to add a few namespaces
to start we need to add
using Amazon;
This will allow us to write our awake method without issues
Next we want to add in our awake method
UnityInitializer.AttachToGameObject(this.gameObject);
Now we can attach the script to a Game Object and it will connect to AWS.