Class: Awspec::Generator::Doc::Type::Elb

Inherits:
Base
  • Object
show all
Defined in:
lib/awspec/generator/doc/type/elb.rb

Instance Method Summary collapse

Methods inherited from Base

#collect_matchers, #doc_template, #generate_doc, #sort_num, #type_name

Constructor Details

#initializeElb

Returns a new instance of Elb.



5
6
7
8
9
10
11
12
13
14
15
16
# 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
  )
end