You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
/// Gets or sets the AWS region endpoint (us-east-1/us-west-1/ap-southeast-2).
13
13
/// </summary>
14
14
publicstringRegion{get;set;}
15
15
@@ -19,17 +19,22 @@ public class AWSS3StorageCacheOptions
19
19
publicstringBucketName{get;set;}
20
20
21
21
/// <summary>
22
-
/// Gets or sets the AWS key - optional.
22
+
/// Gets or sets the AWS key - Can be used to override keys provided by the environment.
23
+
/// If deploying inside an EC2 instance AWS keys will already be available via environment
24
+
/// variables and don't need to be specified. Follow AWS best security practices on <see href="https://docs.aws.amazon.com/general/latest/gr/aws-access-keys-best-practices.html"/>.
23
25
/// </summary>
24
26
publicstringAccessKey{get;set;}
25
27
26
28
/// <summary>
27
-
/// Gets or sets the AWS secret - optional.
29
+
/// Gets or sets the AWS secret - Can be used to override keys provided by the environment.
30
+
/// If deploying inside an EC2 instance AWS keys will already be available via environment
31
+
/// variables and don't need to be specified. Follow AWS best security practices on <see href="https://docs.aws.amazon.com/general/latest/gr/aws-access-keys-best-practices.html"/>.
28
32
/// </summary>
29
33
publicstringAccessSecret{get;set;}
30
34
31
35
/// <summary>
32
-
/// Gets or sets the AWS endpoint - override for testing
36
+
/// Gets or sets the AWS endpoint - used for testing to over region endpoint allowing it
Copy file name to clipboardExpand all lines: src/ImageSharp.Web.Providers.AWS/Providers/AWSS3StorageImageProviderOptions.cs
+9-4Lines changed: 9 additions & 4 deletions
Original file line number
Diff line number
Diff line change
@@ -22,7 +22,7 @@ public class AWSS3StorageImageProviderOptions
22
22
publicclassAWSS3BucketClientOptions
23
23
{
24
24
/// <summary>
25
-
/// Gets or sets the AWS region name.
25
+
/// Gets or sets the AWS region endpoint (us-east-1/us-west-1/ap-southeast-2).
26
26
/// </summary>
27
27
publicstringRegion{get;set;}
28
28
@@ -32,17 +32,22 @@ public class AWSS3BucketClientOptions
32
32
publicstringBucketName{get;set;}
33
33
34
34
/// <summary>
35
-
/// Gets or sets the AWS key - optional.
35
+
/// Gets or sets the AWS key - Can be used to override keys provided by the environment.
36
+
/// If deploying inside an EC2 instance AWS keys will already be available via environment
37
+
/// variables and don't need to be specified. Follow AWS best security practices on <see href="https://docs.aws.amazon.com/general/latest/gr/aws-access-keys-best-practices.html"/>.
36
38
/// </summary>
37
39
publicstringAccessKey{get;set;}
38
40
39
41
/// <summary>
40
-
/// Gets or sets the AWS secret - optional.
42
+
/// Gets or sets the AWS secret - Can be used to override keys provided by the environment.
43
+
/// If deploying inside an EC2 instance AWS keys will already be available via environment
44
+
/// variables and don't need to be specified. Follow AWS best security practices on <see href="https://docs.aws.amazon.com/general/latest/gr/aws-access-keys-best-practices.html"/>.
41
45
/// </summary>
42
46
publicstringAccessSecret{get;set;}
43
47
44
48
/// <summary>
45
-
/// Gets or sets the AWS endpoint - override for testing
49
+
/// Gets or sets the AWS endpoint - used for testing to over region endpoint allowing it
0 commit comments