{-# 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.GuardDuty.GetFindings -- Copyright : (c) 2013-2018 Brendan Hay -- License : Mozilla Public License, v. 2.0. -- Maintainer : Brendan Hay -- Stability : auto-generated -- Portability : non-portable (GHC extensions) -- -- Describes Amazon GuardDuty findings specified by finding IDs. module Network.AWS.GuardDuty.GetFindings ( -- * Creating a Request getFindings , GetFindings -- * Request Lenses , gfFindingIds , gfSortCriteria , gfDetectorId -- * Destructuring the Response , getFindingsResponse , GetFindingsResponse -- * Response Lenses , grsFindings , grsResponseStatus ) where import Network.AWS.GuardDuty.Types import Network.AWS.GuardDuty.Types.Product import Network.AWS.Lens import Network.AWS.Prelude import Network.AWS.Request import Network.AWS.Response -- | GetFindings request body. -- -- /See:/ 'getFindings' smart constructor. data GetFindings = GetFindings' { _gfFindingIds :: !(Maybe [Text]) , _gfSortCriteria :: !(Maybe SortCriteria) , _gfDetectorId :: !Text } deriving (Eq, Read, Show, Data, Typeable, Generic) -- | Creates a value of 'GetFindings' with the minimum fields required to make a request. -- -- Use one of the following lenses to modify other fields as desired: -- -- * 'gfFindingIds' - IDs of the findings that you want to retrieve. -- -- * 'gfSortCriteria' - Represents the criteria used for sorting findings. -- -- * 'gfDetectorId' - The ID of the detector that specifies the GuardDuty service whose findings you want to retrieve. getFindings :: Text -- ^ 'gfDetectorId' -> GetFindings getFindings pDetectorId_ = GetFindings' { _gfFindingIds = Nothing , _gfSortCriteria = Nothing , _gfDetectorId = pDetectorId_ } -- | IDs of the findings that you want to retrieve. gfFindingIds :: Lens' GetFindings [Text] gfFindingIds = lens _gfFindingIds (\ s a -> s{_gfFindingIds = a}) . _Default . _Coerce -- | Represents the criteria used for sorting findings. gfSortCriteria :: Lens' GetFindings (Maybe SortCriteria) gfSortCriteria = lens _gfSortCriteria (\ s a -> s{_gfSortCriteria = a}) -- | The ID of the detector that specifies the GuardDuty service whose findings you want to retrieve. gfDetectorId :: Lens' GetFindings Text gfDetectorId = lens _gfDetectorId (\ s a -> s{_gfDetectorId = a}) instance AWSRequest GetFindings where type Rs GetFindings = GetFindingsResponse request = postJSON guardDuty response = receiveJSON (\ s h x -> GetFindingsResponse' <$> (x .?> "findings" .!@ mempty) <*> (pure (fromEnum s))) instance Hashable GetFindings where instance NFData GetFindings where instance ToHeaders GetFindings where toHeaders = const (mconcat ["Content-Type" =# ("application/x-amz-json-1.1" :: ByteString)]) instance ToJSON GetFindings where toJSON GetFindings'{..} = object (catMaybes [("findingIds" .=) <$> _gfFindingIds, ("sortCriteria" .=) <$> _gfSortCriteria]) instance ToPath GetFindings where toPath GetFindings'{..} = mconcat ["/detector/", toBS _gfDetectorId, "/findings/get"] instance ToQuery GetFindings where toQuery = const mempty -- | /See:/ 'getFindingsResponse' smart constructor. data GetFindingsResponse = GetFindingsResponse' { _grsFindings :: !(Maybe [Finding]) , _grsResponseStatus :: !Int } deriving (Eq, Read, Show, Data, Typeable, Generic) -- | Creates a value of 'GetFindingsResponse' with the minimum fields required to make a request. -- -- Use one of the following lenses to modify other fields as desired: -- -- * 'grsFindings' - Undocumented member. -- -- * 'grsResponseStatus' - -- | The response status code. getFindingsResponse :: Int -- ^ 'grsResponseStatus' -> GetFindingsResponse getFindingsResponse pResponseStatus_ = GetFindingsResponse' {_grsFindings = Nothing, _grsResponseStatus = pResponseStatus_} -- | Undocumented member. grsFindings :: Lens' GetFindingsResponse [Finding] grsFindings = lens _grsFindings (\ s a -> s{_grsFindings = a}) . _Default . _Coerce -- | -- | The response status code. grsResponseStatus :: Lens' GetFindingsResponse Int grsResponseStatus = lens _grsResponseStatus (\ s a -> s{_grsResponseStatus = a}) instance NFData GetFindingsResponse where