Method: Awspec::Generator::Doc::Type::Acm#initialize
- Defined in:
- lib/awspec/generator/doc/type/acm.rb
#initialize ⇒ Acm
Returns a new instance of Acm.
7 8 9 10 11 12 13 14 15 16 17 |
# File 'lib/awspec/generator/doc/type/acm.rb', line 7 def initialize super @type_name = 'Acm' @type = Awspec::Type::Acm.new('example.jp') @ret = @type.resource_via_client @matchers = [ Awspec::Type::Acm::STATUSES.map { |status| "be_#{status.downcase}" }.join(', ') ] @ignore_matchers = Awspec::Type::Acm::STATUSES.map { |status| "be_#{status.downcase}" } @describes = [] end |