# File lib/fog/dns/requests/aws/get_change.rb, line 20
        def get_change(change_id)

          # AWS methods return change_ids that looks like '/change/id'.  Let the caller either use 
          # that form or just the actual id (which is what this request needs)
          change_id = change_id.sub('/change/', '')

          request({
            :expects    => 200,
            :parser     => Fog::Parsers::DNS::AWS::GetChange.new,
            :method     => 'GET',
            :path       => "change/#{change_id}"
          })

        end