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