{-# 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.IAM.AttachGroupPolicy -- Copyright : (c) 2013-2016 Brendan Hay -- License : Mozilla Public License, v. 2.0. -- Maintainer : Brendan Hay -- Stability : auto-generated -- Portability : non-portable (GHC extensions) -- -- Attaches the specified managed policy to the specified group. -- -- You use this API to attach a managed policy to a group. To embed an -- inline policy in a group, use < PutGroupPolicy>. -- -- For more information about policies, refer to -- -- in the /IAM User Guide/. module Network.AWS.IAM.AttachGroupPolicy ( -- * Creating a Request attachGroupPolicy , AttachGroupPolicy -- * Request Lenses , agpGroupName , agpPolicyARN -- * Destructuring the Response , attachGroupPolicyResponse , AttachGroupPolicyResponse ) where import Network.AWS.IAM.Types import Network.AWS.IAM.Types.Product import Network.AWS.Lens import Network.AWS.Prelude import Network.AWS.Request import Network.AWS.Response -- | /See:/ 'attachGroupPolicy' smart constructor. data AttachGroupPolicy = AttachGroupPolicy' { _agpGroupName :: !Text , _agpPolicyARN :: !Text } deriving (Eq,Read,Show,Data,Typeable,Generic) -- | Creates a value of 'AttachGroupPolicy' with the minimum fields required to make a request. -- -- Use one of the following lenses to modify other fields as desired: -- -- * 'agpGroupName' -- -- * 'agpPolicyARN' attachGroupPolicy :: Text -- ^ 'agpGroupName' -> Text -- ^ 'agpPolicyARN' -> AttachGroupPolicy attachGroupPolicy pGroupName_ pPolicyARN_ = AttachGroupPolicy' { _agpGroupName = pGroupName_ , _agpPolicyARN = pPolicyARN_ } -- | The name (friendly name, not ARN) of the group to attach the policy to. agpGroupName :: Lens' AttachGroupPolicy Text agpGroupName = lens _agpGroupName (\ s a -> s{_agpGroupName = a}); -- | Undocumented member. agpPolicyARN :: Lens' AttachGroupPolicy Text agpPolicyARN = lens _agpPolicyARN (\ s a -> s{_agpPolicyARN = a}); instance AWSRequest AttachGroupPolicy where type Rs AttachGroupPolicy = AttachGroupPolicyResponse request = postQuery iam response = receiveNull AttachGroupPolicyResponse' instance Hashable AttachGroupPolicy instance ToHeaders AttachGroupPolicy where toHeaders = const mempty instance ToPath AttachGroupPolicy where toPath = const "/" instance ToQuery AttachGroupPolicy where toQuery AttachGroupPolicy'{..} = mconcat ["Action" =: ("AttachGroupPolicy" :: ByteString), "Version" =: ("2010-05-08" :: ByteString), "GroupName" =: _agpGroupName, "PolicyArn" =: _agpPolicyARN] -- | /See:/ 'attachGroupPolicyResponse' smart constructor. data AttachGroupPolicyResponse = AttachGroupPolicyResponse' deriving (Eq,Read,Show,Data,Typeable,Generic) -- | Creates a value of 'AttachGroupPolicyResponse' with the minimum fields required to make a request. -- attachGroupPolicyResponse :: AttachGroupPolicyResponse attachGroupPolicyResponse = AttachGroupPolicyResponse'