Class: CfnGuardian::Resource::VPNTunnel

Inherits:
Base
  • Object
show all
Defined in:
lib/cfnguardian/resources/vpn_tunnel.rb

Instance Method Summary collapse

Methods inherited from Base

#default_checks, #default_event_subscriptions, #default_events, #default_metric_filters, #get_alarms, #get_checks, #get_cost, #get_event_subscriptions, #get_events, #get_metric_filters, #initialize, #resource_exists?

Methods included from Logging

colors, included, logger, #logger, logger=

Constructor Details

This class inherits a constructor from CfnGuardian::Resource::Base

Instance Method Details

#default_alarmsObject



4
5
6
7
8
9
10
11
12
13
14
15
# File 'lib/cfnguardian/resources/vpn_tunnel.rb', line 4

def default_alarms    
  alarm = CfnGuardian::Models::VPNTunnelAlarm.new(@resource)
  alarm.name = 'VPNTunnelState'
  alarm.metric_name = 'TunnelState'
  alarm.comparison_operator = 'LessThanThreshold'
  alarm.statistic = 'Minimum'
  alarm.threshold = 1
  alarm.evaluation_periods = 5
  alarm.treat_missing_data = 'breaching'
  alarm.datapoints_to_alarm = 5
  @alarms.push(alarm)
end