Skip to content

Commit

Permalink
Remove URLDecodedKey from S3Object
Browse files Browse the repository at this point in the history
  • Loading branch information
johanneswuerbach committed Nov 11, 2020
1 parent f24acb2 commit 5fe0657
Showing 1 changed file with 5 additions and 6 deletions.
11 changes: 5 additions & 6 deletions events/s3.go
Expand Up @@ -46,12 +46,11 @@ type S3Bucket struct {
}

type S3Object struct {
Key string `json:"key"`
Size int64 `json:"size,omitempty"`
URLDecodedKey string `json:"urlDecodedKey"`
VersionID string `json:"versionId"`
ETag string `json:"eTag"`
Sequencer string `json:"sequencer"`
Key string `json:"key"`
Size int64 `json:"size,omitempty"`
VersionID string `json:"versionId"`
ETag string `json:"eTag"`
Sequencer string `json:"sequencer"`
}

type S3TestEvent struct {
Expand Down

0 comments on commit 5fe0657

Please sign in to comment.