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