Sha256: 34dfb870d6eb91d2ffda264a6bef9cec890e9dd28132ae470392a03095235935
Contents?: true
Size: 566 Bytes
Versions: 126
Compression:
Stored size: 566 Bytes
Contents
module Awspec::Generator module Doc module Type class EcsService < Base def initialize super @type_name = 'ECS Service' @type = Awspec::Type::EcsService.new('my-ecs-service') @ret = @type.resource_via_client @matchers = [ Awspec::Type::EcsService::STATES.map { |state| 'be_' + state.downcase }.join(', ') ] @ignore_matchers = Awspec::Type::EcsService::STATES.map { |state| 'be_' + state.downcase } @describes = [] end end end end end
Version data entries
126 entries across 126 versions & 4 rubygems