Class: Awspec::Generator::Doc::Type::Codepipeline
- Defined in:
- lib/awspec/generator/doc/type/codepipeline.rb
Instance Method Summary collapse
-
#initialize ⇒ Codepipeline
constructor
A new instance of Codepipeline.
Methods inherited from Base
#collect_matchers, #doc_template, #generate_doc, #sort_num, #type_name
Constructor Details
#initialize ⇒ Codepipeline
Returns a new instance of Codepipeline.
7 8 9 10 11 12 13 14 15 |
# File 'lib/awspec/generator/doc/type/codepipeline.rb', line 7 def initialize super @type_name = 'Codepipeline' @type = Awspec::Type::Codepipeline.new('my-codepipeline') @ret = @type.resource_via_client @matchers = [] @ignore_matchers = [] @describes = [] end |