1
1
Fork 0
mirror of https://github.com/NixOS/nix.git synced 2025-11-16 07:22:43 +01:00

Add aws-region param to S3 store URLs

This commit is contained in:
Shea Levy 2017-03-03 16:12:17 -05:00
parent d1158bb816
commit 5789eaa3f4
3 changed files with 11 additions and 7 deletions

View file

@ -14,9 +14,9 @@ struct S3Helper
ref<Aws::Client::ClientConfiguration> config;
ref<Aws::S3::S3Client> client;
S3Helper();
S3Helper(const std::string & region);
ref<Aws::Client::ClientConfiguration> makeConfig();
ref<Aws::Client::ClientConfiguration> makeConfig(const std::string & region);
struct DownloadResult
{