# File lib/fog/aws/requests/data_pipeline/deactivate_pipeline.rb, line 24
        def deactivate_pipeline(id, cancel_active=true)
          response = Excon::Response.new

          pipeline = find_pipeline(id)
          pipeline[:active] = false

          response.body = {}
          response
        end