{-# 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.ListAttachedGroupPolicies -- Copyright : (c) 2013-2015 Brendan Hay -- License : Mozilla Public License, v. 2.0. -- Maintainer : Brendan Hay -- Stability : auto-generated -- Portability : non-portable (GHC extensions) -- -- Lists all managed policies that are attached to the specified group. -- -- A group can also have inline policies embedded with it. To list the -- inline policies for a group, use the ListGroupPolicies API. For -- information about policies, refer to -- -- in the /Using IAM/ guide. -- -- You can paginate the results using the 'MaxItems' and 'Marker' -- parameters. You can use the 'PathPrefix' parameter to limit the list of -- policies to only those matching the specified path prefix. If there are -- no policies attached to the specified group (or none that match the -- specified path prefix), the action returns an empty list. -- -- /See:/ for ListAttachedGroupPolicies. module Network.AWS.IAM.ListAttachedGroupPolicies ( -- * Creating a Request listAttachedGroupPolicies , ListAttachedGroupPolicies -- * Request Lenses , lagpPathPrefix , lagpMarker , lagpMaxItems , lagpGroupName -- * Destructuring the Response , listAttachedGroupPoliciesResponse , ListAttachedGroupPoliciesResponse -- * Response Lenses , lagprsAttachedPolicies , lagprsMarker , lagprsIsTruncated , lagprsResponseStatus ) where import Network.AWS.IAM.Types import Network.AWS.IAM.Types.Product import Network.AWS.Prelude import Network.AWS.Request import Network.AWS.Response -- | /See:/ 'listAttachedGroupPolicies' smart constructor. data ListAttachedGroupPolicies = ListAttachedGroupPolicies' { _lagpPathPrefix :: !(Maybe Text) , _lagpMarker :: !(Maybe Text) , _lagpMaxItems :: !(Maybe Nat) , _lagpGroupName :: !Text } deriving (Eq,Read,Show,Data,Typeable,Generic) -- | Creates a value of 'ListAttachedGroupPolicies' with the minimum fields required to make a request. -- -- Use one of the following lenses to modify other fields as desired: -- -- * 'lagpPathPrefix' -- -- * 'lagpMarker' -- -- * 'lagpMaxItems' -- -- * 'lagpGroupName' listAttachedGroupPolicies :: Text -- ^ 'lagpGroupName' -> ListAttachedGroupPolicies listAttachedGroupPolicies pGroupName_ = ListAttachedGroupPolicies' { _lagpPathPrefix = Nothing , _lagpMarker = Nothing , _lagpMaxItems = Nothing , _lagpGroupName = pGroupName_ } -- | The path prefix for filtering the results. This parameter is optional. -- If it is not included, it defaults to a slash (\/), listing all -- policies. lagpPathPrefix :: Lens' ListAttachedGroupPolicies (Maybe Text) lagpPathPrefix = lens _lagpPathPrefix (\ s a -> s{_lagpPathPrefix = a}); -- | Use this parameter only when paginating results and only after you have -- received a response where the results are truncated. Set it to the value -- of the 'Marker' element in the response you just received. lagpMarker :: Lens' ListAttachedGroupPolicies (Maybe Text) lagpMarker = lens _lagpMarker (\ s a -> s{_lagpMarker = a}); -- | Use this only when paginating results to indicate the maximum number of -- items you want in the response. If there are additional items beyond the -- maximum you specify, the 'IsTruncated' response element is 'true'. -- -- This parameter is optional. If you do not include it, it defaults to -- 100. lagpMaxItems :: Lens' ListAttachedGroupPolicies (Maybe Natural) lagpMaxItems = lens _lagpMaxItems (\ s a -> s{_lagpMaxItems = a}) . mapping _Nat; -- | The name (friendly name, not ARN) of the group to list attached policies -- for. lagpGroupName :: Lens' ListAttachedGroupPolicies Text lagpGroupName = lens _lagpGroupName (\ s a -> s{_lagpGroupName = a}); instance AWSRequest ListAttachedGroupPolicies where type Rs ListAttachedGroupPolicies = ListAttachedGroupPoliciesResponse request = postQuery iAM response = receiveXMLWrapper "ListAttachedGroupPoliciesResult" (\ s h x -> ListAttachedGroupPoliciesResponse' <$> (x .@? "AttachedPolicies" .!@ mempty >>= may (parseXMLList "member")) <*> (x .@? "Marker") <*> (x .@? "IsTruncated") <*> (pure (fromEnum s))) instance ToHeaders ListAttachedGroupPolicies where toHeaders = const mempty instance ToPath ListAttachedGroupPolicies where toPath = const "/" instance ToQuery ListAttachedGroupPolicies where toQuery ListAttachedGroupPolicies'{..} = mconcat ["Action" =: ("ListAttachedGroupPolicies" :: ByteString), "Version" =: ("2010-05-08" :: ByteString), "PathPrefix" =: _lagpPathPrefix, "Marker" =: _lagpMarker, "MaxItems" =: _lagpMaxItems, "GroupName" =: _lagpGroupName] -- | Contains the response to a successful ListAttachedGroupPolicies request. -- -- /See:/ 'listAttachedGroupPoliciesResponse' smart constructor. data ListAttachedGroupPoliciesResponse = ListAttachedGroupPoliciesResponse' { _lagprsAttachedPolicies :: !(Maybe [AttachedPolicy]) , _lagprsMarker :: !(Maybe Text) , _lagprsIsTruncated :: !(Maybe Bool) , _lagprsResponseStatus :: !Int } deriving (Eq,Read,Show,Data,Typeable,Generic) -- | Creates a value of 'ListAttachedGroupPoliciesResponse' with the minimum fields required to make a request. -- -- Use one of the following lenses to modify other fields as desired: -- -- * 'lagprsAttachedPolicies' -- -- * 'lagprsMarker' -- -- * 'lagprsIsTruncated' -- -- * 'lagprsResponseStatus' listAttachedGroupPoliciesResponse :: Int -- ^ 'lagprsResponseStatus' -> ListAttachedGroupPoliciesResponse listAttachedGroupPoliciesResponse pResponseStatus_ = ListAttachedGroupPoliciesResponse' { _lagprsAttachedPolicies = Nothing , _lagprsMarker = Nothing , _lagprsIsTruncated = Nothing , _lagprsResponseStatus = pResponseStatus_ } -- | A list of the attached policies. lagprsAttachedPolicies :: Lens' ListAttachedGroupPoliciesResponse [AttachedPolicy] lagprsAttachedPolicies = lens _lagprsAttachedPolicies (\ s a -> s{_lagprsAttachedPolicies = a}) . _Default . _Coerce; -- | When 'IsTruncated' is 'true', this element is present and contains the -- value to use for the 'Marker' parameter in a subsequent pagination -- request. lagprsMarker :: Lens' ListAttachedGroupPoliciesResponse (Maybe Text) lagprsMarker = lens _lagprsMarker (\ s a -> s{_lagprsMarker = a}); -- | A flag that indicates whether there are more items to return. If your -- results were truncated, you can make a subsequent pagination request -- using the 'Marker' request parameter to retrieve more items. lagprsIsTruncated :: Lens' ListAttachedGroupPoliciesResponse (Maybe Bool) lagprsIsTruncated = lens _lagprsIsTruncated (\ s a -> s{_lagprsIsTruncated = a}); -- | The response status code. lagprsResponseStatus :: Lens' ListAttachedGroupPoliciesResponse Int lagprsResponseStatus = lens _lagprsResponseStatus (\ s a -> s{_lagprsResponseStatus = a});