# File lib/fog/aws/requests/data_pipeline/activate_pipeline.rb, line 23
        def activate_pipeline(id)
          response = Excon::Response.new

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

          response.body = {}
          response
        end