class Awspec::Generator::Doc::Type::Alb
Public Class Methods
new()
click to toggle source
Calls superclass method
# File lib/awspec/generator/doc/type/alb.rb, line 5 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' ] @ignore_matchers = Awspec::Type::Alb::STATES.map { |state| 'be_' + state } @describes = [] end