Place content on the server at the given URL via an HTTP PUT request,
specifying the content type and a function to write the content to the
supplied
OutputStream. You might see:
put "http://s3.example.com/bucket42/object149" "text/plain"
(fileBody "hello.txt") (\p i -> do
putStr $ show p
Streams.connect i stdout)