Class: AwsAlertMonitor::Events::Unknown
Instance Attribute Summary
#message_data, #raw_data
Instance Method Summary
collapse
#initialize
Instance Method Details
#body ⇒ Object
6
7
8
|
# File 'lib/aws-alert-monitor/events/unknown.rb', line 6
def body
"received an alert: \n\n #{raw_data.to_s}"
end
|
#subject ⇒ Object
10
11
12
|
# File 'lib/aws-alert-monitor/events/unknown.rb', line 10
def subject
"Alert: unknown type"
end
|
#type ⇒ Object
14
15
16
|
# File 'lib/aws-alert-monitor/events/unknown.rb', line 14
def type
'unknown'
end
|