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