Method: Awspec::Generator::Doc::Type::Elb#initialize

Defined in:
lib/awspec/generator/doc/type/elb.rb

#initializeElb

Returns a new instance of Elb.



5
6
7
8
9
10
11
12
13
14
15
16
17
# File 'lib/awspec/generator/doc/type/elb.rb', line 5

def initialize
  super
  @type_name = 'ELB'
  @type = Awspec::Type::Elb.new('my-elb')
  @ret = @type.resource_via_client
  @matchers = %w(belong_to_vpc)
  @ignore_matchers = []
  @describes = %w(
    health_check_target health_check_interval health_check_timeout
    health_check_unhealthy_threshold health_check_healthy_threshold
    idle_timeout
  )
end