It should be a problem with AWS credentials. Create a credentials file at any path where you want to access this path from the web service application. Make sure not to include any extensions. The credentials file should contain only the below data:
[default]
aws_access_key_id=[your_access_key]
aws_secret_access_key=[your_secret_key]
After this you need to set the path in app settings in the Web.config file:
<appSettings>
<add key="AWSProfilesLocation" value="C:\awsfile\credentials" />
<add key="AWSRegion" value="us-east-1" />
</appSettings>
Hope this helped!