amazonka-s3-1.3.7: gen/Network/AWS/S3/RestoreObject.hs
{-# LANGUAGE DeriveDataTypeable #-}
{-# LANGUAGE DeriveGeneric #-}
{-# LANGUAGE OverloadedStrings #-}
{-# LANGUAGE RecordWildCards #-}
{-# LANGUAGE TypeFamilies #-}
{-# OPTIONS_GHC -fno-warn-unused-imports #-}
{-# OPTIONS_GHC -fno-warn-unused-binds #-}
{-# OPTIONS_GHC -fno-warn-unused-matches #-}
-- Derived from AWS service descriptions, licensed under Apache 2.0.
-- |
-- Module : Network.AWS.S3.RestoreObject
-- Copyright : (c) 2013-2015 Brendan Hay
-- License : Mozilla Public License, v. 2.0.
-- Maintainer : Brendan Hay <brendan.g.hay@gmail.com>
-- Stability : auto-generated
-- Portability : non-portable (GHC extensions)
--
-- Restores an archived copy of an object back into Amazon S3
--
-- /See:/ <http://docs.aws.amazon.com/AmazonS3/latest/API/RestoreObject.html AWS API Reference> for RestoreObject.
module Network.AWS.S3.RestoreObject
(
-- * Creating a Request
restoreObject
, RestoreObject
-- * Request Lenses
, roVersionId
, roRequestPayer
, roRestoreRequest
, roBucket
, roKey
-- * Destructuring the Response
, restoreObjectResponse
, RestoreObjectResponse
-- * Response Lenses
, rorsRequestCharged
, rorsResponseStatus
) where
import Network.AWS.Lens
import Network.AWS.Prelude
import Network.AWS.Request
import Network.AWS.Response
import Network.AWS.S3.Types
import Network.AWS.S3.Types.Product
-- | /See:/ 'restoreObject' smart constructor.
data RestoreObject = RestoreObject'
{ _roVersionId :: !(Maybe ObjectVersionId)
, _roRequestPayer :: !(Maybe RequestPayer)
, _roRestoreRequest :: !(Maybe RestoreRequest)
, _roBucket :: !BucketName
, _roKey :: !ObjectKey
} deriving (Eq,Read,Show,Data,Typeable,Generic)
-- | Creates a value of 'RestoreObject' with the minimum fields required to make a request.
--
-- Use one of the following lenses to modify other fields as desired:
--
-- * 'roVersionId'
--
-- * 'roRequestPayer'
--
-- * 'roRestoreRequest'
--
-- * 'roBucket'
--
-- * 'roKey'
restoreObject
:: BucketName -- ^ 'roBucket'
-> ObjectKey -- ^ 'roKey'
-> RestoreObject
restoreObject pBucket_ pKey_ =
RestoreObject'
{ _roVersionId = Nothing
, _roRequestPayer = Nothing
, _roRestoreRequest = Nothing
, _roBucket = pBucket_
, _roKey = pKey_
}
-- | Undocumented member.
roVersionId :: Lens' RestoreObject (Maybe ObjectVersionId)
roVersionId = lens _roVersionId (\ s a -> s{_roVersionId = a});
-- | Undocumented member.
roRequestPayer :: Lens' RestoreObject (Maybe RequestPayer)
roRequestPayer = lens _roRequestPayer (\ s a -> s{_roRequestPayer = a});
-- | Undocumented member.
roRestoreRequest :: Lens' RestoreObject (Maybe RestoreRequest)
roRestoreRequest = lens _roRestoreRequest (\ s a -> s{_roRestoreRequest = a});
-- | Undocumented member.
roBucket :: Lens' RestoreObject BucketName
roBucket = lens _roBucket (\ s a -> s{_roBucket = a});
-- | Undocumented member.
roKey :: Lens' RestoreObject ObjectKey
roKey = lens _roKey (\ s a -> s{_roKey = a});
instance AWSRequest RestoreObject where
type Rs RestoreObject = RestoreObjectResponse
request = postXML s3
response
= receiveEmpty
(\ s h x ->
RestoreObjectResponse' <$>
(h .#? "x-amz-request-charged") <*>
(pure (fromEnum s)))
instance ToElement RestoreObject where
toElement
= mkElement
"{http://s3.amazonaws.com/doc/2006-03-01/}RestoreRequest"
.
_roRestoreRequest
instance ToHeaders RestoreObject where
toHeaders RestoreObject'{..}
= mconcat ["x-amz-request-payer" =# _roRequestPayer]
instance ToPath RestoreObject where
toPath RestoreObject'{..}
= mconcat ["/", toBS _roBucket, "/", toBS _roKey]
instance ToQuery RestoreObject where
toQuery RestoreObject'{..}
= mconcat ["versionId" =: _roVersionId, "restore"]
-- | /See:/ 'restoreObjectResponse' smart constructor.
data RestoreObjectResponse = RestoreObjectResponse'
{ _rorsRequestCharged :: !(Maybe RequestCharged)
, _rorsResponseStatus :: !Int
} deriving (Eq,Read,Show,Data,Typeable,Generic)
-- | Creates a value of 'RestoreObjectResponse' with the minimum fields required to make a request.
--
-- Use one of the following lenses to modify other fields as desired:
--
-- * 'rorsRequestCharged'
--
-- * 'rorsResponseStatus'
restoreObjectResponse
:: Int -- ^ 'rorsResponseStatus'
-> RestoreObjectResponse
restoreObjectResponse pResponseStatus_ =
RestoreObjectResponse'
{ _rorsRequestCharged = Nothing
, _rorsResponseStatus = pResponseStatus_
}
-- | Undocumented member.
rorsRequestCharged :: Lens' RestoreObjectResponse (Maybe RequestCharged)
rorsRequestCharged = lens _rorsRequestCharged (\ s a -> s{_rorsRequestCharged = a});
-- | The response status code.
rorsResponseStatus :: Lens' RestoreObjectResponse Int
rorsResponseStatus = lens _rorsResponseStatus (\ s a -> s{_rorsResponseStatus = a});