class Awspec::Generator::Doc::Type::Mq
Public Class Methods
new()
click to toggle source
Calls superclass method
Awspec::Generator::Doc::Type::Base::new
# File lib/awspec/generator/doc/type/mq.rb, line 7 def initialize super @type_name = 'MQ' @type = Awspec::Type::Mq.new('my-mq') @ret = @type.resource_via_client @matchers = [ Awspec::Type::Mq::STATES.map { |state| "be_#{state.tr('-', '_')}" }.join(', ') ] @ignore_matchers = Awspec::Type::Mq::STATES.map { |state| "be_#{state.tr('-', '_')}" } @describes = %w[vpc_id] end