class Awspec::Generator::Doc::Type::Eks
Public Class Methods
new()
click to toggle source
Calls superclass method
Awspec::Generator::Doc::Type::Base::new
# File lib/awspec/generator/doc/type/eks.rb, line 5 def initialize super @type_name = 'Eks' @type = Awspec::Type::Eks.new('my-eks') @ret = @type.resource_via_client @matchers = [ Awspec::Type::Eks::STATES.map { |state| 'be_' + state.downcase }.join(', ') ] @ignore_matchers = Awspec::Type::Eks::STATES.map { |state| 'be_' + state.downcase } @describes = [] end