# File lib/rudy/aws/ec2/instance.rb, line 362
362:       def self.known_state?(state)
363:         return false unless state
364:         state &&= state.to_sym
365:         state = :shutting_down if state == 'shutting-down''shutting-down'
366:         KNOWN_STATES.member?(state)
367:       end