{-# 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.AttachRolePolicy -- 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 IAM role. -- -- -- When you attach a managed policy to a role, the managed policy becomes part of the role's permission (access) policy. You cannot use a managed policy as the role's trust policy. The role's trust policy is created at the same time as the role, using 'CreateRole' . You can update a role's trust policy using 'UpdateAssumeRolePolicy' . -- -- Use this API to attach a /managed/ policy to a role. To embed an inline policy in a role, use 'PutRolePolicy' . For more information about policies, see in the /IAM User Guide/ . -- module Network.AWS.IAM.AttachRolePolicy ( -- * Creating a Request attachRolePolicy , AttachRolePolicy -- * Request Lenses , arpRoleName , arpPolicyARN -- * Destructuring the Response , attachRolePolicyResponse , AttachRolePolicyResponse ) 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:/ 'attachRolePolicy' smart constructor. data AttachRolePolicy = AttachRolePolicy' { _arpRoleName :: !Text , _arpPolicyARN :: !Text } deriving (Eq,Read,Show,Data,Typeable,Generic) -- | Creates a value of 'AttachRolePolicy' with the minimum fields required to make a request. -- -- Use one of the following lenses to modify other fields as desired: -- -- * 'arpRoleName' - The name (friendly name, not ARN) of the role to attach the policy to. The for this parameter is a string of characters consisting of upper and lowercase alphanumeric characters with no spaces. You can also include any of the following characters: =,.@- -- -- * 'arpPolicyARN' - The Amazon Resource Name (ARN) of the IAM policy you want to attach. For more information about ARNs, see in the /AWS General Reference/ . attachRolePolicy :: Text -- ^ 'arpRoleName' -> Text -- ^ 'arpPolicyARN' -> AttachRolePolicy attachRolePolicy pRoleName_ pPolicyARN_ = AttachRolePolicy' { _arpRoleName = pRoleName_ , _arpPolicyARN = pPolicyARN_ } -- | The name (friendly name, not ARN) of the role to attach the policy to. The for this parameter is a string of characters consisting of upper and lowercase alphanumeric characters with no spaces. You can also include any of the following characters: =,.@- arpRoleName :: Lens' AttachRolePolicy Text arpRoleName = lens _arpRoleName (\ s a -> s{_arpRoleName = a}); -- | The Amazon Resource Name (ARN) of the IAM policy you want to attach. For more information about ARNs, see in the /AWS General Reference/ . arpPolicyARN :: Lens' AttachRolePolicy Text arpPolicyARN = lens _arpPolicyARN (\ s a -> s{_arpPolicyARN = a}); instance AWSRequest AttachRolePolicy where type Rs AttachRolePolicy = AttachRolePolicyResponse request = postQuery iam response = receiveNull AttachRolePolicyResponse' instance Hashable AttachRolePolicy instance NFData AttachRolePolicy instance ToHeaders AttachRolePolicy where toHeaders = const mempty instance ToPath AttachRolePolicy where toPath = const "/" instance ToQuery AttachRolePolicy where toQuery AttachRolePolicy'{..} = mconcat ["Action" =: ("AttachRolePolicy" :: ByteString), "Version" =: ("2010-05-08" :: ByteString), "RoleName" =: _arpRoleName, "PolicyArn" =: _arpPolicyARN] -- | /See:/ 'attachRolePolicyResponse' smart constructor. data AttachRolePolicyResponse = AttachRolePolicyResponse' deriving (Eq,Read,Show,Data,Typeable,Generic) -- | Creates a value of 'AttachRolePolicyResponse' with the minimum fields required to make a request. -- attachRolePolicyResponse :: AttachRolePolicyResponse attachRolePolicyResponse = AttachRolePolicyResponse' instance NFData AttachRolePolicyResponse