class Awspec::Generator::Doc::Type::ElastictranscoderPipeline

Public Class Methods

new() click to toggle source
Calls superclass method Awspec::Generator::Doc::Type::Base::new
# File lib/awspec/generator/doc/type/elastictranscoder_pipeline.rb, line 7
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