# File lib/aws/ec2/instance.rb, line 791 def attributes_from_response_object(obj) if atts = super(obj) if obj[:instance_state] atts[:status] = obj[:instance_state].name.tr("-","_").to_sym end atts end end