class Awspec::Generator::Doc::Type::Nlb
Public Class Methods
Source
# File lib/awspec/generator/doc/type/nlb.rb, line 7 def initialize super @type_name = 'NLB' @type = Awspec::Type::Nlb.new('my-nlb') @ret = @type.resource_via_client @matchers = [ Awspec::Type::Nlb::STATES.map { |state| "be_#{state}" }.join(', '), 'belong_to_vpc' ] @ignore_matchers = Awspec::Type::Nlb::STATES.map { |state| "be_#{state}" } @describes = [] end
Calls superclass method
Awspec::Generator::Doc::Type::Base::new