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