class AwsDump::RDSInstance

Public Class Methods

new(parent, rds) click to toggle source
# File lib/aws_dump/rds_instance.rb, line 5
def initialize(parent, rds)
  @parent = parent
  @rds = rds
  self[:id] = @rds.id
  self[:name] = @rds.db_name
  self[:address] = @rds.endpoint_address
end