diff options
| author | chrislu <chris.lu@gmail.com> | 2022-05-15 00:43:39 -0700 |
|---|---|---|
| committer | chrislu <chris.lu@gmail.com> | 2022-05-15 00:43:39 -0700 |
| commit | 4076d748132d5954a44587a6f9cac4ffd209ca8c (patch) | |
| tree | 4b7639caec2e421528f914a65b6fa631f122cdb1 /weed/s3api/http/header.go | |
| parent | 29198720f22ddb4cf3c594d53564ae7e4e6c3253 (diff) | |
| parent | 05f16ba4d2dc08931a618feee11c8d41396664a1 (diff) | |
| download | seaweedfs-4076d748132d5954a44587a6f9cac4ffd209ca8c.tar.xz seaweedfs-4076d748132d5954a44587a6f9cac4ffd209ca8c.zip | |
Merge branch 'master' of https://github.com/chrislusf/seaweedfs
Diffstat (limited to 'weed/s3api/http/header.go')
| -rw-r--r-- | weed/s3api/http/header.go | 9 |
1 files changed, 6 insertions, 3 deletions
diff --git a/weed/s3api/http/header.go b/weed/s3api/http/header.go index d63d50443..30fc8eefa 100644 --- a/weed/s3api/http/header.go +++ b/weed/s3api/http/header.go @@ -28,11 +28,14 @@ const ( AmzStorageClass = "x-amz-storage-class" // S3 user-defined metadata - AmzUserMetaPrefix = "X-Amz-Meta-" + AmzUserMetaPrefix = "X-Amz-Meta-" + AmzUserMetaDirective = "X-Amz-Metadata-Directive" // S3 object tagging - AmzObjectTagging = "X-Amz-Tagging" - AmzTagCount = "x-amz-tagging-count" + AmzObjectTagging = "X-Amz-Tagging" + AmzObjectTaggingPrefix = "X-Amz-Tagging-" + AmzObjectTaggingDirective = "X-Amz-Tagging-Directive" + AmzTagCount = "x-amz-tagging-count" ) // Non-Standard S3 HTTP request constants |
