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).
20
18
/// </summary>
21
-
string?Region{get;set;}
19
+
publicstring?Region{get;set;}
22
20
23
21
/// <summary>
24
22
/// Gets or sets the AWS bucket name.
23
+
/// Cannot be <see langword="null"/> when <see cref="S3ClientFactory"/> is not set.
25
24
/// </summary>
26
-
stringBucketName{get;set;}
25
+
publicstringBucketName{get;set;}
27
26
28
27
/// <summary>
29
28
/// Gets or sets the AWS key - Can be used to override keys provided by the environment.
30
29
/// 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"/>.
30
+
/// variables and don't need to be specified. Follow AWS best security practices on
/// Gets or sets the AWS endpoint - used to override the default service endpoint.
37
37
/// If deploying inside an EC2 instance AWS keys will already be available via environment
38
-
/// 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"/>.
38
+
/// variables and don't need to be specified. Follow AWS best security practices on
/// Gets or sets the AWS endpoint - used for testing to over region endpoint allowing it
44
45
/// to be set to localhost.
45
46
/// </summary>
46
-
string?Endpoint{get;set;}
47
+
publicstring?Endpoint{get;set;}
47
48
48
49
/// <summary>
49
50
/// Gets or sets a value indicating whether the S3 accelerate endpoint is used.
50
-
/// The feature must be enabled on the bucket. Follow AWS instruction on <see href="https://docs.aws.amazon.com/AmazonS3/latest/userguide/transfer-acceleration.html"/>.
51
+
/// The feature must be enabled on the bucket. Follow AWS instruction on
0 commit comments