This repository has samples that demonstrate various aspects of the AWS Mobile SDK for Unity, you can get the SDK source on Github (https://github.com/aws/aws-sdk-net)
Other
160
stars
107
forks
source link
Fix couldn't post to S3 bucket which is not located at us-east-1. #18
Amazon.S3.Model.PostObjectRequest has
Region
member which is initialized as us-east-1. https://github.com/aws/aws-sdk-unity/blob/master/Assets/AWSSDK/src/Services/S3/Custom/Model/_unity/PostObjectRequest.cs#L47Region
is used to make S3 bucket URL. https://github.com/aws/aws-sdk-unity/blob/master/Assets/AWSSDK/src/Services/S3/Custom/_unity/AmazonS3Client.unity.cs#L105-L113So, it is necessary to set
Region
as bucket's region.