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