# File lib/fog/aws/requests/dns/get_change.rb, line 34
        def get_change(change_id)
          response = Excon::Response.new
          # find the record with matching change_id
          # records = data[:zones].values.map{|z| z[:records].values.map{|r| r.values}}.flatten
          change = self.data[:changes][change_id] ||
            raise(Fog::DNS::AWS::NotFound.new("NoSuchChange => Could not find resource with ID: #{change_id}"))

          response.status = 200
          submitted_at = Time.parse(change[:submitted_at])
          response.body = {
            'Id' => change[:id],
            # set as insync after some time
            'Status' => (submitted_at + Fog::Mock.delay) < Time.now ? 'INSYNC' : change[:status],
            'SubmittedAt' => change[:submitted_at]
          }
          response
        end