amazonka-s3-0.0.5: gen/Network/AWS/S3/GetObjectAcl.hs
{-# LANGUAGE DataKinds #-}
{-# LANGUAGE DeriveGeneric #-}
{-# LANGUAGE FlexibleInstances #-}
{-# LANGUAGE GeneralizedNewtypeDeriving #-}
{-# LANGUAGE LambdaCase #-}
{-# LANGUAGE NoImplicitPrelude #-}
{-# LANGUAGE OverloadedStrings #-}
{-# LANGUAGE RecordWildCards #-}
{-# LANGUAGE TypeFamilies #-}
{-# OPTIONS_GHC -fno-warn-unused-imports #-}
-- Module : Network.AWS.S3.GetObjectAcl
-- Copyright : (c) 2013-2014 Brendan Hay <brendan.g.hay@gmail.com>
-- License : This Source Code Form is subject to the terms of
-- the Mozilla Public License, v. 2.0.
-- A copy of the MPL can be found in the LICENSE file or
-- you can obtain it at http://mozilla.org/MPL/2.0/.
-- Maintainer : Brendan Hay <brendan.g.hay@gmail.com>
-- Stability : experimental
-- Portability : non-portable (GHC extensions)
--
-- Derived from AWS service descriptions, licensed under Apache 2.0.
-- | Returns the access control list (ACL) of an object.
--
-- <http://docs.aws.amazon.com/AmazonS3/latest/API/GetObjectAcl.html>
module Network.AWS.S3.GetObjectAcl
(
-- * Request
GetObjectAcl
-- ** Request constructor
, getObjectAcl
-- ** Request lenses
, goaBucket
, goaKey
, goaVersionId
-- * Response
, GetObjectAclResponse
-- ** Response constructor
, getObjectAclResponse
-- ** Response lenses
, goarGrants
, goarOwner
) where
import Network.AWS.Prelude
import Network.AWS.Request.S3
import Network.AWS.S3.Types
import qualified GHC.Exts
data GetObjectAcl = GetObjectAcl
{ _goaBucket :: Text
, _goaKey :: Text
, _goaVersionId :: Maybe Text
} deriving (Eq, Ord, Show)
-- | 'GetObjectAcl' constructor.
--
-- The fields accessible through corresponding lenses are:
--
-- * 'goaBucket' @::@ 'Text'
--
-- * 'goaKey' @::@ 'Text'
--
-- * 'goaVersionId' @::@ 'Maybe' 'Text'
--
getObjectAcl :: Text -- ^ 'goaBucket'
-> Text -- ^ 'goaKey'
-> GetObjectAcl
getObjectAcl p1 p2 = GetObjectAcl
{ _goaBucket = p1
, _goaKey = p2
, _goaVersionId = Nothing
}
goaBucket :: Lens' GetObjectAcl Text
goaBucket = lens _goaBucket (\s a -> s { _goaBucket = a })
goaKey :: Lens' GetObjectAcl Text
goaKey = lens _goaKey (\s a -> s { _goaKey = a })
-- | VersionId used to reference a specific version of the object.
goaVersionId :: Lens' GetObjectAcl (Maybe Text)
goaVersionId = lens _goaVersionId (\s a -> s { _goaVersionId = a })
data GetObjectAclResponse = GetObjectAclResponse
{ _goarGrants :: List "Grant" Grant
, _goarOwner :: Maybe Owner
} deriving (Eq, Show)
-- | 'GetObjectAclResponse' constructor.
--
-- The fields accessible through corresponding lenses are:
--
-- * 'goarGrants' @::@ ['Grant']
--
-- * 'goarOwner' @::@ 'Maybe' 'Owner'
--
getObjectAclResponse :: GetObjectAclResponse
getObjectAclResponse = GetObjectAclResponse
{ _goarOwner = Nothing
, _goarGrants = mempty
}
-- | A list of grants.
goarGrants :: Lens' GetObjectAclResponse [Grant]
goarGrants = lens _goarGrants (\s a -> s { _goarGrants = a }) . _List
goarOwner :: Lens' GetObjectAclResponse (Maybe Owner)
goarOwner = lens _goarOwner (\s a -> s { _goarOwner = a })
instance ToPath GetObjectAcl where
toPath GetObjectAcl{..} = mconcat
[ "/"
, toText _goaBucket
, "/"
, toText _goaKey
]
instance ToQuery GetObjectAcl where
toQuery GetObjectAcl{..} = mconcat
[ "acl"
, "versionId" =? _goaVersionId
]
instance ToHeaders GetObjectAcl
instance ToXMLRoot GetObjectAcl where
toXMLRoot = const (namespaced ns "GetObjectAcl" [])
instance ToXML GetObjectAcl
instance AWSRequest GetObjectAcl where
type Sv GetObjectAcl = S3
type Rs GetObjectAcl = GetObjectAclResponse
request = get
response = xmlResponse
instance FromXML GetObjectAclResponse where
parseXML x = GetObjectAclResponse
<$> x .@ "AccessControlList"
<*> x .@? "Owner"