Sha256: 17cabcf9398a9b3f6f2e143d3de0d6f7fa47dbc904c17a106ed530459db12906
Contents?: true
Size: 597 Bytes
Versions: 13
Compression:
Stored size: 597 Bytes
Contents
# frozen_string_literal: true module Awspec::Generator module Doc module Type class EcsCluster < Base 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 end end end end
Version data entries
13 entries across 13 versions & 1 rubygems