Class: Awspec::Generator::Doc::Type::Rds

Inherits:
Base
  • Object
show all
Defined in:
lib/awspec/generator/doc/type/rds.rb

Instance Method Summary collapse

Methods inherited from Base

#collect_matchers, #doc_template, #generate_doc, #sort_num, #type_name

Constructor Details

#initializeRds

Returns a new instance of Rds.



5
6
7
8
9
10
11
12
13
14
15
16
17
18
# File 'lib/awspec/generator/doc/type/rds.rb', line 5

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