As this looks like another telerik academic ( red never gets fixed) issue..
Here are the steps to fix..
1. Copy code from everlive provider
public string ApiKey { get; set; }
Here are the steps to fix..
1. Copy code from everlive provider
public string ApiKey { get; set; }
to AWS provider with tags
public string AccessKey { get; set; }
public string SecretKey { get; set; }
public string SecretKey { get; set; }
These need to a) take direct assignments, b) take config is set, or if none of the above use AWS dynamic keys..
2. Remove exception for null config, as this breaks AWS dynamic keys..
2. Remove exception for null config, as this breaks AWS dynamic keys..
if (config == null)
{
throw new ArgumentNullException("No valid configuration is provided.");
}
{
throw new ArgumentNullException("No valid configuration is provided.");
}
3. Good to go..