class Awspec::Generator::Doc::Type::Elb

Public Class Methods

new() click to toggle source
Calls superclass method Awspec::Generator::Doc::Type::Base::new
# 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