Sha256: 42172b166fcfe648a64ec9a7f7c973b8b80f305f75cfecc2c5a84e77ae69e5dd
Contents?: true
Size: 661 Bytes
Versions: 10
Compression:
Stored size: 661 Bytes
Contents
# frozen_string_literal: true module Awspec::Generator module Doc module Type class RdsProxy < Base def initialize super @type_name = 'RdsProxy' @type = Awspec::Type::RdsProxy.new('my-rds-proxy') @ret = @type.resource_via_client @matchers = [ Awspec::Type::RdsProxy::STATES.map { |state| "be_#{state.tr('-', '_')}" }.join(', '), 'belong_to_vpc', 'belong_to_subnet' ] @ignore_matchers = Awspec::Type::RdsProxy::STATES.map { |state| "be_#{state.tr('-', '_')}" } @describes = %w[vpc_id] end end end end end
Version data entries
10 entries across 10 versions & 1 rubygems