I am writing code to upload files to AWS S3 and receiving this exception:
AmazonClientException: No RegionEndpoint or ServiceURL configured
If you are using TransferUtility() try this:
TransferUtility()
var credentials = new BasicAWSCredentials(accessKeyID, secretKey); var S3Client = new AmazonS3Client(credentials, RegionEndpoint.USEast1); this._transferUtility = new TransferUtility(S3Client);