class Awspec::Generator::Doc::Type::Acm

Public Class Methods

new() click to toggle source
Calls superclass method
# File lib/awspec/generator/doc/type/acm.rb, line 5
def initialize
  super
  @type_name = 'Acm'
  @type = Awspec::Type::Acm.new('example.com')
  @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