{-# 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.DeviceFarm.ListSuites -- Copyright : (c) 2013-2015 Brendan Hay -- License : Mozilla Public License, v. 2.0. -- Maintainer : Brendan Hay -- Stability : auto-generated -- Portability : non-portable (GHC extensions) -- -- Gets information about suites. -- -- /See:/ for ListSuites. module Network.AWS.DeviceFarm.ListSuites ( -- * Creating a Request listSuites , ListSuites -- * Request Lenses , lNextToken , lArn -- * Destructuring the Response , listSuitesResponse , ListSuitesResponse -- * Response Lenses , lrsNextToken , lrsSuites , lrsStatus ) where import Network.AWS.DeviceFarm.Types import Network.AWS.DeviceFarm.Types.Product import Network.AWS.Prelude import Network.AWS.Request import Network.AWS.Response -- | Represents a request to the list suites operation. -- -- /See:/ 'listSuites' smart constructor. data ListSuites = ListSuites' { _lNextToken :: !(Maybe Text) , _lArn :: !Text } deriving (Eq,Read,Show,Data,Typeable,Generic) -- | Creates a value of 'ListSuites' with the minimum fields required to make a request. -- -- Use one of the following lenses to modify other fields as desired: -- -- * 'lNextToken' -- -- * 'lArn' listSuites :: Text -- ^ 'lArn' -> ListSuites listSuites pArn_ = ListSuites' { _lNextToken = Nothing , _lArn = pArn_ } -- | An identifier that was returned from the previous call to this -- operation, which can be used to return the next set of items in the -- list. lNextToken :: Lens' ListSuites (Maybe Text) lNextToken = lens _lNextToken (\ s a -> s{_lNextToken = a}); -- | The suites\' ARNs. lArn :: Lens' ListSuites Text lArn = lens _lArn (\ s a -> s{_lArn = a}); instance AWSRequest ListSuites where type Sv ListSuites = DeviceFarm type Rs ListSuites = ListSuitesResponse request = postJSON response = receiveJSON (\ s h x -> ListSuitesResponse' <$> (x .?> "nextToken") <*> (x .?> "suites" .!@ mempty) <*> (pure (fromEnum s))) instance ToHeaders ListSuites where toHeaders = const (mconcat ["X-Amz-Target" =# ("DeviceFarm_20150623.ListSuites" :: ByteString), "Content-Type" =# ("application/x-amz-json-1.1" :: ByteString)]) instance ToJSON ListSuites where toJSON ListSuites'{..} = object ["nextToken" .= _lNextToken, "arn" .= _lArn] instance ToPath ListSuites where toPath = const "/" instance ToQuery ListSuites where toQuery = const mempty -- | Represents the result of a list suites request. -- -- /See:/ 'listSuitesResponse' smart constructor. data ListSuitesResponse = ListSuitesResponse' { _lrsNextToken :: !(Maybe Text) , _lrsSuites :: !(Maybe [Suite]) , _lrsStatus :: !Int } deriving (Eq,Read,Show,Data,Typeable,Generic) -- | Creates a value of 'ListSuitesResponse' with the minimum fields required to make a request. -- -- Use one of the following lenses to modify other fields as desired: -- -- * 'lrsNextToken' -- -- * 'lrsSuites' -- -- * 'lrsStatus' listSuitesResponse :: Int -- ^ 'lrsStatus' -> ListSuitesResponse listSuitesResponse pStatus_ = ListSuitesResponse' { _lrsNextToken = Nothing , _lrsSuites = Nothing , _lrsStatus = pStatus_ } -- | If the number of items that are returned is significantly large, this is -- an identifier that is also returned, which can be used in a subsequent -- call to this operation to return the next set of items in the list. lrsNextToken :: Lens' ListSuitesResponse (Maybe Text) lrsNextToken = lens _lrsNextToken (\ s a -> s{_lrsNextToken = a}); -- | Information about the suites. lrsSuites :: Lens' ListSuitesResponse [Suite] lrsSuites = lens _lrsSuites (\ s a -> s{_lrsSuites = a}) . _Default . _Coerce; -- | The response status code. lrsStatus :: Lens' ListSuitesResponse Int lrsStatus = lens _lrsStatus (\ s a -> s{_lrsStatus = a});