diff --git a/antiope-shell.cabal b/antiope-shell.cabal
--- a/antiope-shell.cabal
+++ b/antiope-shell.cabal
@@ -1,7 +1,7 @@
 cabal-version: 2.4
 
 name:                   antiope-shell
-version:                7.4.1
+version:                7.4.2
 synopsis:               Please see the README on Github at <https://github.com/arbor/antiope#readme>
 description:            Please see the README on Github at <https://github.com/arbor/antiope#readme>.
 category:               Services
diff --git a/src/Antiope/Shell/S3.hs b/src/Antiope/Shell/S3.hs
--- a/src/Antiope/Shell/S3.hs
+++ b/src/Antiope/Shell/S3.hs
@@ -24,15 +24,13 @@
 import qualified System.Exit          as IO
 import qualified System.Process       as IO
 
-data PutObjectReply = PutObjectReply
-  { versionId :: Text
-  , eTag      :: Text
+newtype PutObjectReply = PutObjectReply
+  { eTag      :: Text
   } deriving (Eq, Show, Generic)
 
 instance J.FromJSON PutObjectReply where
   parseJSON = J.withObject "PutObjectReply" $ \v -> PutObjectReply
-        <$> v .: "VersionId"
-        <*> v .: "ETag"
+    <$> v .: "ETag"
 
 -- | Puts file into a specified S3 bucket
 putFile :: MonadIO m
