Class: Awspec::Generator::Doc::Type::ElastictranscoderPipeline

Inherits:
Base
  • Object
show all
Defined in:
lib/awspec/generator/doc/type/elastictranscoder_pipeline.rb

Instance Method Summary collapse

Methods inherited from Base

#collect_matchers, #doc_template, #generate_doc, #sort_num, #type_name

Constructor Details

#initializeElastictranscoderPipeline

Returns a new instance of ElastictranscoderPipeline.



5
6
7
8
9
10
11
12
13
14
15
16
17
# File 'lib/awspec/generator/doc/type/elastictranscoder_pipeline.rb', line 5

def initialize
  super
  @type_name = 'ElastictranscoderPipeline'
  @type = Awspec::Type::ElastictranscoderPipeline.new('my-elastic-transcoder-pipeline')
  @ret = @type.resource_via_client
  @matchers = [
    Awspec::Type::ElastictranscoderPipeline::STATUSES.map { |status| 'be_' + status.underscore }.join(', ')
  ]
  @ignore_matchers = Awspec::Type::ElastictranscoderPipeline::STATUSES.map do |status|
    'be_' + status.underscore
  end
  @describes = []
end