Skip to content

Commit

Permalink
Formatted
Browse files Browse the repository at this point in the history
  • Loading branch information
shask-amazon committed Dec 17, 2020
1 parent 73085a1 commit cabf7e6
Showing 1 changed file with 19 additions and 19 deletions.
38 changes: 19 additions & 19 deletions events/activemq.go
Original file line number Diff line number Diff line change
Expand Up @@ -3,28 +3,28 @@
package events

type ActiveMQEvent struct {
EventSource string `json:"eventSource"`
EventSourceArn string `json:"eventSourceArn"`
Messages []ActiveMQMessage `json:"messages"`
EventSource string `json:"eventSource"`
EventSourceArn string `json:"eventSourceArn"`
Messages []ActiveMQMessage `json:"messages"`
}

type ActiveMQMessage struct {
MessageID string `json:"messageID"`
MessageType string `json:"messageType"`
Timestamp int64 `json:"timestamp"`
DeliveryMode int `json:"deliveryMode"`
CorrelationID string `json:"correlationID"`
ReplyTo string `json:"replyTo"`
Destination Destination `json:"destination"`
Redelivered bool `json:"redelivered"`
Type string `json:"type"`
Expiration int64 `json:"expiration"`
Priority int `json:"priority"`
Data string `json:"data"`
BrokerInTime int64 `json:"brokerInTime"`
BrokerOutTime int64 `json:"brokerOutTime"`
MessageID string `json:"messageID"`
MessageType string `json:"messageType"`
Timestamp int64 `json:"timestamp"`
DeliveryMode int `json:"deliveryMode"`
CorrelationID string `json:"correlationID"`
ReplyTo string `json:"replyTo"`
Destination Destination `json:"destination"`
Redelivered bool `json:"redelivered"`
Type string `json:"type"`
Expiration int64 `json:"expiration"`
Priority int `json:"priority"`
Data string `json:"data"`
BrokerInTime int64 `json:"brokerInTime"`
BrokerOutTime int64 `json:"brokerOutTime"`
}

type Destination struct {
PhysicalName string `json:"physicalName"`
}
PhysicalName string `json:"physicalName"`
}

0 comments on commit cabf7e6

Please sign in to comment.