Sha256: 814153e6c43bb5927e16ef9abc051c4084acf331128d35ca7dac957ba9b94766
Contents?: true
Size: 563 Bytes
Versions: 14
Compression:
Stored size: 563 Bytes
Contents
# frozen_string_literal: true 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
14 entries across 14 versions & 1 rubygems