Sha256: a20f86e0aa8e3a4c7b8ab8bbf18f4b9ad8392696f77b24b5d417d6405349a930
Contents?: true
Size: 532 Bytes
Versions: 38
Compression:
Stored size: 532 Bytes
Contents
module Awspec::Generator module Doc module Type class Mq < Base def initialize super @type_name = 'MQ' @type = Awspec::Type::Mq.new('my-mq') @ret = @type.resource_via_client @matchers = [ Awspec::Type::Mq::STATES.map { |state| 'be_' + state.tr('-', '_') }.join(', ') ] @ignore_matchers = Awspec::Type::Mq::STATES.map { |state| 'be_' + state.tr('-', '_') } @describes = %w(vpc_id) end end end end end
Version data entries
38 entries across 38 versions & 3 rubygems