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
Allow setting the acl for uploaded files (s3) (#204)
* Allow setting the acl for uploaded files (s3)
* rename option and set the acl when creating a bucket.
* add test
* (Not) Handle unknown pre-defined urls
* cleanup
Copy file name to clipboardExpand all lines: doc/client-settings.md
+13-12Lines changed: 13 additions & 12 deletions
Display the source diff
Display the rich diff
Original file line number
Diff line number
Diff line change
@@ -64,18 +64,19 @@ More options can be found in the [Azure.Identity README](https://github.com/Azur
64
64
65
65
## Amazon s3 specific properties
66
66
67
-
| Property | Description |
68
-
| --- | ------ |
69
-
| profileName | AWS [credentials file](https://docs.aws.amazon.com/sdk-for-net/v2/developer-guide/net-dg-config-creds.html#creds-file) profile name. *[Cannot be used with accessKeyId or secretAccessKey]* |
70
-
| accessKeyId | Access key id *[Cannot be used with profileName]* |
71
-
| secretAccessKey | Secret access key *[Cannot be used with profileName]* |
72
-
| bucketName | S3 bucket name *[Required]* |
73
-
| region | S3 region *[Cannot be used with serviceURL]* |
74
-
| serviceURL | S3 service URL *[Cannot be used with region]* |
75
-
| path | Full URI of the storage bucket. If not specified a default URI will be used. |
76
-
| feedSubPath | Provides a sub directory path within the bucket where the feed should be added. This allows for multiple feeds within a single bucket. |
77
-
| serverSideEncryptionMethod | The encryption to use for uploaded objects. Only `AES256` and `None` are currently supported. Default is `None` |
78
-
| compress | Compress JSON files with GZIP before uploading. Default is *true* |
| profileName | AWS [credentials file](https://docs.aws.amazon.com/sdk-for-net/v2/developer-guide/net-dg-config-creds.html#creds-file) profile name. *[Cannot be used with accessKeyId or secretAccessKey]* |
70
+
| accessKeyId | Access key id *[Cannot be used with profileName]* |
71
+
| secretAccessKey | Secret access key *[Cannot be used with profileName]* |
72
+
| bucketName | S3 bucket name *[Required]* |
73
+
| region | S3 region *[Cannot be used with serviceURL]* |
74
+
| serviceURL | S3 service URL *[Cannot be used with region]* |
75
+
| path | Full URI of the storage bucket. If not specified a default URI will be used. |
76
+
| feedSubPath | Provides a sub directory path within the bucket where the feed should be added. This allows for multiple feeds within a single bucket. |
77
+
| serverSideEncryptionMethod | The encryption to use for uploaded objects. Only `AES256` and `None` are currently supported. Default is `None` |
78
+
| compress | Compress JSON files with GZIP before uploading. Default is *true* |
79
+
| acl | A acl can be set for uploaded files. By default, no specific canned acl is set and bucket defaults and/or policies are in effect. If the bucket is created by sleet and an acl is set, then the default bucket acl will be set to that acl. |
79
80
80
81
Either `region` or `serviceURL` should be specified but not both.
0 commit comments