class Awspec::Generator::Doc::Type::RdsProxy
Public Class Methods
new()
click to toggle source
Calls superclass method
Awspec::Generator::Doc::Type::Base::new
# File lib/awspec/generator/doc/type/rds_proxy.rb, line 7 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