# File lib/fog/aws/models/rds/servers.rb, line 12defalldata = service.describe_db_instances.body['DescribeDBInstancesResult']['DBInstances']
load(data) # data is an array of attribute hashesend
get(identity)click to toggle source
# File lib/fog/aws/models/rds/servers.rb, line 17defget(identity)
data = service.describe_db_instances(identity).body['DescribeDBInstancesResult']['DBInstances'].firstnew(data) # data is an attribute hashrescueFog::AWS::RDS::NotFoundnilend