-
-
Notifications
You must be signed in to change notification settings - Fork 1
/
event.go
62 lines (56 loc) · 1.54 KB
/
event.go
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
package s32cs
import (
"encoding/json"
"net/url"
"time"
)
type SQSEvent struct {
QueueURL string `json:"queue_url"`
}
type S3Event struct {
Records []S3EventRecord `json:"Records"`
}
type S3EventRecord struct {
EventVersion string `json:"eventVersion"`
EventSource string `json:"eventSource"`
AwsRegion string `json:"awsRegion"`
EventTime time.Time `json:"eventTime"`
EventName string `json:"eventName"`
UserIdentity struct {
PrincipalID string `json:"principalId"`
} `json:"userIdentity"`
RequestParameters struct {
SourceIPAddress string `json:"sourceIPAddress"`
} `json:"requestParameters"`
ResponseElements struct {
XAmzRequestID string `json:"x-amz-request-id"`
XAmzID2 string `json:"x-amz-id-2"`
} `json:"responseElements"`
S3 struct {
S3SchemaVersion string `json:"s3SchemaVersion"`
ConfigurationID string `json:"configurationId"`
Bucket struct {
Name string `json:"name"`
OwnerIdentity struct {
PrincipalID string `json:"principalId"`
} `json:"ownerIdentity"`
Arn string `json:"arn"`
} `json:"bucket"`
Object struct {
Key string `json:"key"`
Size int `json:"size"`
ETag string `json:"eTag"`
VersionID string `json:"versionId"`
Sequencer string `json:"sequencer"`
} `json:"object"`
} `json:"s3"`
}
func (r S3EventRecord) Parse() (bucket, key string, err error) {
bucket = r.S3.Bucket.Name
key, err = url.PathUnescape(r.S3.Object.Key)
return
}
func (e S3Event) String() string {
b, _ := json.Marshal(&e)
return string(b)
}