{-# 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.CloudWatchEvents.ListTargetsByRule -- Copyright : (c) 2013-2016 Brendan Hay -- License : Mozilla Public License, v. 2.0. -- Maintainer : Brendan Hay -- Stability : auto-generated -- Portability : non-portable (GHC extensions) -- -- Lists of targets assigned to the rule. module Network.AWS.CloudWatchEvents.ListTargetsByRule ( -- * Creating a Request listTargetsByRule , ListTargetsByRule -- * Request Lenses , ltbrNextToken , ltbrLimit , ltbrRule -- * Destructuring the Response , listTargetsByRuleResponse , ListTargetsByRuleResponse -- * Response Lenses , ltbrrsNextToken , ltbrrsTargets , ltbrrsResponseStatus ) where import Network.AWS.CloudWatchEvents.Types import Network.AWS.CloudWatchEvents.Types.Product import Network.AWS.Lens import Network.AWS.Prelude import Network.AWS.Request import Network.AWS.Response -- | Container for the parameters to the < ListTargetsByRule> operation. -- -- /See:/ 'listTargetsByRule' smart constructor. data ListTargetsByRule = ListTargetsByRule' { _ltbrNextToken :: !(Maybe Text) , _ltbrLimit :: !(Maybe Nat) , _ltbrRule :: !Text } deriving (Eq,Read,Show,Data,Typeable,Generic) -- | Creates a value of 'ListTargetsByRule' with the minimum fields required to make a request. -- -- Use one of the following lenses to modify other fields as desired: -- -- * 'ltbrNextToken' -- -- * 'ltbrLimit' -- -- * 'ltbrRule' listTargetsByRule :: Text -- ^ 'ltbrRule' -> ListTargetsByRule listTargetsByRule pRule_ = ListTargetsByRule' { _ltbrNextToken = Nothing , _ltbrLimit = Nothing , _ltbrRule = pRule_ } -- | The token returned by a previous call to indicate that there is more -- data available. ltbrNextToken :: Lens' ListTargetsByRule (Maybe Text) ltbrNextToken = lens _ltbrNextToken (\ s a -> s{_ltbrNextToken = a}); -- | The maximum number of results to return. ltbrLimit :: Lens' ListTargetsByRule (Maybe Natural) ltbrLimit = lens _ltbrLimit (\ s a -> s{_ltbrLimit = a}) . mapping _Nat; -- | The name of the rule whose targets you want to list. ltbrRule :: Lens' ListTargetsByRule Text ltbrRule = lens _ltbrRule (\ s a -> s{_ltbrRule = a}); instance AWSRequest ListTargetsByRule where type Rs ListTargetsByRule = ListTargetsByRuleResponse request = postJSON cloudWatchEvents response = receiveJSON (\ s h x -> ListTargetsByRuleResponse' <$> (x .?> "NextToken") <*> (x .?> "Targets" .!@ mempty) <*> (pure (fromEnum s))) instance Hashable ListTargetsByRule instance ToHeaders ListTargetsByRule where toHeaders = const (mconcat ["X-Amz-Target" =# ("AWSEvents.ListTargetsByRule" :: ByteString), "Content-Type" =# ("application/x-amz-json-1.1" :: ByteString)]) instance ToJSON ListTargetsByRule where toJSON ListTargetsByRule'{..} = object (catMaybes [("NextToken" .=) <$> _ltbrNextToken, ("Limit" .=) <$> _ltbrLimit, Just ("Rule" .= _ltbrRule)]) instance ToPath ListTargetsByRule where toPath = const "/" instance ToQuery ListTargetsByRule where toQuery = const mempty -- | The result of the < ListTargetsByRule> operation. -- -- /See:/ 'listTargetsByRuleResponse' smart constructor. data ListTargetsByRuleResponse = ListTargetsByRuleResponse' { _ltbrrsNextToken :: !(Maybe Text) , _ltbrrsTargets :: !(Maybe [Target]) , _ltbrrsResponseStatus :: !Int } deriving (Eq,Read,Show,Data,Typeable,Generic) -- | Creates a value of 'ListTargetsByRuleResponse' with the minimum fields required to make a request. -- -- Use one of the following lenses to modify other fields as desired: -- -- * 'ltbrrsNextToken' -- -- * 'ltbrrsTargets' -- -- * 'ltbrrsResponseStatus' listTargetsByRuleResponse :: Int -- ^ 'ltbrrsResponseStatus' -> ListTargetsByRuleResponse listTargetsByRuleResponse pResponseStatus_ = ListTargetsByRuleResponse' { _ltbrrsNextToken = Nothing , _ltbrrsTargets = Nothing , _ltbrrsResponseStatus = pResponseStatus_ } -- | Indicates that there are additional results to retrieve. ltbrrsNextToken :: Lens' ListTargetsByRuleResponse (Maybe Text) ltbrrsNextToken = lens _ltbrrsNextToken (\ s a -> s{_ltbrrsNextToken = a}); -- | Lists the targets assigned to the rule. ltbrrsTargets :: Lens' ListTargetsByRuleResponse [Target] ltbrrsTargets = lens _ltbrrsTargets (\ s a -> s{_ltbrrsTargets = a}) . _Default . _Coerce; -- | The response status code. ltbrrsResponseStatus :: Lens' ListTargetsByRuleResponse Int ltbrrsResponseStatus = lens _ltbrrsResponseStatus (\ s a -> s{_ltbrrsResponseStatus = a});