diff options
author | Jesse Plamondon-Willard <Pathoschild@users.noreply.github.com> | 2019-11-27 21:49:36 -0500 |
---|---|---|
committer | Jesse Plamondon-Willard <Pathoschild@users.noreply.github.com> | 2019-11-27 21:49:36 -0500 |
commit | b1400bcb684c43790dd38628b6c131e9e7c4d400 (patch) | |
tree | 4b7ddf46d81a76d535ac8995ac4e1120f2432677 /src/SMAPI.Web/Framework/ConfigModels/ApiClientsConfig.cs | |
parent | 0223382ca8e267d730629ee69cdf1cff673c8573 (diff) | |
download | SMAPI-b1400bcb684c43790dd38628b6c131e9e7c4d400.tar.gz SMAPI-b1400bcb684c43790dd38628b6c131e9e7c4d400.tar.bz2 SMAPI-b1400bcb684c43790dd38628b6c131e9e7c4d400.zip |
fallback to Amazon S3 if saving a log to Pastebin fails
Diffstat (limited to 'src/SMAPI.Web/Framework/ConfigModels/ApiClientsConfig.cs')
-rw-r--r-- | src/SMAPI.Web/Framework/ConfigModels/ApiClientsConfig.cs | 16 |
1 files changed, 16 insertions, 0 deletions
diff --git a/src/SMAPI.Web/Framework/ConfigModels/ApiClientsConfig.cs b/src/SMAPI.Web/Framework/ConfigModels/ApiClientsConfig.cs index 121690c5..7119ef03 100644 --- a/src/SMAPI.Web/Framework/ConfigModels/ApiClientsConfig.cs +++ b/src/SMAPI.Web/Framework/ConfigModels/ApiClientsConfig.cs @@ -14,6 +14,22 @@ namespace StardewModdingAPI.Web.Framework.ConfigModels /**** + ** Amazon Web Services + ****/ + /// <summary>The access key for AWS authentication.</summary> + public string AmazonAccessKey { get; set; } + + /// <summary>The secret key for AWS authentication.</summary> + public string AmazonSecretKey { get; set; } + + /// <summary>The AWS region endpoint (like 'us-east-1').</summary> + public string AmazonRegion { get; set; } + + /// <summary>The AWS bucket in which to store temporary uploaded logs.</summary> + public string AmazonLogBucket { get; set; } + + + /**** ** Chucklefish ****/ /// <summary>The base URL for the Chucklefish mod site.</summary> |