Sha256: bb82e80852c018a7efbeb0f14de7c88dd8fe5981dd8849fa3dc90f7095646f5b
Contents?: true
Size: 640 Bytes
Versions: 191
Compression:
Stored size: 640 Bytes
Contents
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
191 entries across 191 versions & 4 rubygems