Class: CfnGuardian::Resource::SFTP

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

Instance Method Summary collapse

Methods inherited from Base

#default_event_subscriptions, #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
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
# File 'lib/cfnguardian/resources/sftp.rb', line 4

def default_alarms    
  alarm = CfnGuardian::Models::SFTPAlarm.new(@resource)
  alarm.name = 'Available'
  alarm.metric_name = 'Available'
  @alarms.push(alarm)
  
  alarm = CfnGuardian::Models::SFTPAlarm.new(@resource)
  alarm.name = 'ConnectionTime'
  alarm.metric_name = 'ConnectionTime'
  alarm.comparison_operator = 'GreaterThanThreshold'
  alarm.statistic = 'Minimum'
  alarm.threshold = 1000
  @alarms.push(alarm)
  
  if @resource.has_key?('File')
    alarm = CfnGuardian::Models::SFTPAlarm.new(@resource)
    alarm.name = 'FileExists'
    alarm.metric_name = 'FileExists'
    @alarms.push(alarm)
  
    alarm = CfnGuardian::Models::SFTPAlarm.new(@resource)
    alarm.name = 'FileGetTime'
    alarm.metric_name = 'FileGetTime'
    alarm.comparison_operator = 'GreaterThanThreshold'
    alarm.statistic = 'Minimum'
    alarm.threshold = 1000
    @alarms.push(alarm)
    
    if @resource.has_key?('FileBodyMatch')
      alarm = CfnGuardian::Models::SFTPAlarm.new(@resource)
      alarm.name = 'FileBodyMatch'
      alarm.metric_name = 'FileBodyMatch'
      @alarms.push(alarm)
    end
  end
end

#default_checksObject



45
46
47
# File 'lib/cfnguardian/resources/sftp.rb', line 45

def default_checks
  @checks.push(CfnGuardian::Models::SFTPCheck.new(@resource))
end

#default_eventsObject



41
42
43
# File 'lib/cfnguardian/resources/sftp.rb', line 41

def default_events
  @events.push(CfnGuardian::Models::SFTPEvent.new(@resource))
end