amazonka-s3-1.4.5: gen/Network/AWS/S3/PutBucketACL.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.PutBucketACL
-- Copyright : (c) 2013-2016 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)
--
-- Sets the permissions on a bucket using access control lists (ACL).
module Network.AWS.S3.PutBucketACL
(
-- * Creating a Request
putBucketACL
, PutBucketACL
-- * Request Lenses
, pbaGrantReadACP
, pbaGrantWriteACP
, pbaGrantRead
, pbaGrantFullControl
, pbaContentMD5
, pbaAccessControlPolicy
, pbaGrantWrite
, pbaACL
, pbaBucket
-- * Destructuring the Response
, putBucketACLResponse
, PutBucketACLResponse
) 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:/ 'putBucketACL' smart constructor.
data PutBucketACL = PutBucketACL'
{ _pbaGrantReadACP :: !(Maybe Text)
, _pbaGrantWriteACP :: !(Maybe Text)
, _pbaGrantRead :: !(Maybe Text)
, _pbaGrantFullControl :: !(Maybe Text)
, _pbaContentMD5 :: !(Maybe Text)
, _pbaAccessControlPolicy :: !(Maybe AccessControlPolicy)
, _pbaGrantWrite :: !(Maybe Text)
, _pbaACL :: !(Maybe BucketCannedACL)
, _pbaBucket :: !BucketName
} deriving (Eq,Read,Show,Data,Typeable,Generic)
-- | Creates a value of 'PutBucketACL' with the minimum fields required to make a request.
--
-- Use one of the following lenses to modify other fields as desired:
--
-- * 'pbaGrantReadACP' - Allows grantee to read the bucket ACL.
--
-- * 'pbaGrantWriteACP' - Allows grantee to write the ACL for the applicable bucket.
--
-- * 'pbaGrantRead' - Allows grantee to list the objects in the bucket.
--
-- * 'pbaGrantFullControl' - Allows grantee the read, write, read ACP, and write ACP permissions on the bucket.
--
-- * 'pbaContentMD5' - Undocumented member.
--
-- * 'pbaAccessControlPolicy' - Undocumented member.
--
-- * 'pbaGrantWrite' - Allows grantee to create, overwrite, and delete any object in the bucket.
--
-- * 'pbaACL' - The canned ACL to apply to the bucket.
--
-- * 'pbaBucket' - Undocumented member.
putBucketACL
:: BucketName -- ^ 'pbaBucket'
-> PutBucketACL
putBucketACL pBucket_ =
PutBucketACL'
{ _pbaGrantReadACP = Nothing
, _pbaGrantWriteACP = Nothing
, _pbaGrantRead = Nothing
, _pbaGrantFullControl = Nothing
, _pbaContentMD5 = Nothing
, _pbaAccessControlPolicy = Nothing
, _pbaGrantWrite = Nothing
, _pbaACL = Nothing
, _pbaBucket = pBucket_
}
-- | Allows grantee to read the bucket ACL.
pbaGrantReadACP :: Lens' PutBucketACL (Maybe Text)
pbaGrantReadACP = lens _pbaGrantReadACP (\ s a -> s{_pbaGrantReadACP = a});
-- | Allows grantee to write the ACL for the applicable bucket.
pbaGrantWriteACP :: Lens' PutBucketACL (Maybe Text)
pbaGrantWriteACP = lens _pbaGrantWriteACP (\ s a -> s{_pbaGrantWriteACP = a});
-- | Allows grantee to list the objects in the bucket.
pbaGrantRead :: Lens' PutBucketACL (Maybe Text)
pbaGrantRead = lens _pbaGrantRead (\ s a -> s{_pbaGrantRead = a});
-- | Allows grantee the read, write, read ACP, and write ACP permissions on the bucket.
pbaGrantFullControl :: Lens' PutBucketACL (Maybe Text)
pbaGrantFullControl = lens _pbaGrantFullControl (\ s a -> s{_pbaGrantFullControl = a});
-- | Undocumented member.
pbaContentMD5 :: Lens' PutBucketACL (Maybe Text)
pbaContentMD5 = lens _pbaContentMD5 (\ s a -> s{_pbaContentMD5 = a});
-- | Undocumented member.
pbaAccessControlPolicy :: Lens' PutBucketACL (Maybe AccessControlPolicy)
pbaAccessControlPolicy = lens _pbaAccessControlPolicy (\ s a -> s{_pbaAccessControlPolicy = a});
-- | Allows grantee to create, overwrite, and delete any object in the bucket.
pbaGrantWrite :: Lens' PutBucketACL (Maybe Text)
pbaGrantWrite = lens _pbaGrantWrite (\ s a -> s{_pbaGrantWrite = a});
-- | The canned ACL to apply to the bucket.
pbaACL :: Lens' PutBucketACL (Maybe BucketCannedACL)
pbaACL = lens _pbaACL (\ s a -> s{_pbaACL = a});
-- | Undocumented member.
pbaBucket :: Lens' PutBucketACL BucketName
pbaBucket = lens _pbaBucket (\ s a -> s{_pbaBucket = a});
instance AWSRequest PutBucketACL where
type Rs PutBucketACL = PutBucketACLResponse
request = putXML s3
response = receiveNull PutBucketACLResponse'
instance Hashable PutBucketACL
instance NFData PutBucketACL
instance ToElement PutBucketACL where
toElement
= mkElement
"{http://s3.amazonaws.com/doc/2006-03-01/}AccessControlPolicy"
.
_pbaAccessControlPolicy
instance ToHeaders PutBucketACL where
toHeaders PutBucketACL'{..}
= mconcat
["x-amz-grant-read-acp" =# _pbaGrantReadACP,
"x-amz-grant-write-acp" =# _pbaGrantWriteACP,
"x-amz-grant-read" =# _pbaGrantRead,
"x-amz-grant-full-control" =# _pbaGrantFullControl,
"Content-MD5" =# _pbaContentMD5,
"x-amz-grant-write" =# _pbaGrantWrite,
"x-amz-acl" =# _pbaACL]
instance ToPath PutBucketACL where
toPath PutBucketACL'{..}
= mconcat ["/", toBS _pbaBucket]
instance ToQuery PutBucketACL where
toQuery = const (mconcat ["acl"])
-- | /See:/ 'putBucketACLResponse' smart constructor.
data PutBucketACLResponse =
PutBucketACLResponse'
deriving (Eq,Read,Show,Data,Typeable,Generic)
-- | Creates a value of 'PutBucketACLResponse' with the minimum fields required to make a request.
--
putBucketACLResponse
:: PutBucketACLResponse
putBucketACLResponse = PutBucketACLResponse'
instance NFData PutBucketACLResponse