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