{-# 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.UpdateThreatIntelSet -- Copyright : (c) 2013-2018 Brendan Hay -- License : Mozilla Public License, v. 2.0. -- Maintainer : Brendan Hay -- Stability : auto-generated -- Portability : non-portable (GHC extensions) -- -- Updates the ThreatIntelSet specified by ThreatIntelSet ID. module Network.AWS.GuardDuty.UpdateThreatIntelSet ( -- * Creating a Request updateThreatIntelSet , UpdateThreatIntelSet -- * Request Lenses , utisLocation , utisActivate , utisName , utisThreatIntelSetId , utisDetectorId -- * Destructuring the Response , updateThreatIntelSetResponse , UpdateThreatIntelSetResponse -- * Response Lenses , utisrsResponseStatus ) 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 -- | UpdateThreatIntelSet request body. -- -- /See:/ 'updateThreatIntelSet' smart constructor. data UpdateThreatIntelSet = UpdateThreatIntelSet' { _utisLocation :: !(Maybe Text) , _utisActivate :: !(Maybe Bool) , _utisName :: !(Maybe Text) , _utisThreatIntelSetId :: !Text , _utisDetectorId :: !Text } deriving (Eq, Read, Show, Data, Typeable, Generic) -- | Creates a value of 'UpdateThreatIntelSet' with the minimum fields required to make a request. -- -- Use one of the following lenses to modify other fields as desired: -- -- * 'utisLocation' - The updated URI of the file that contains the ThreateIntelSet. For example (https://s3.us-west-2.amazonaws.com/my-bucket/my-object-key) -- -- * 'utisActivate' - The updated boolean value that specifies whether the ThreateIntelSet is active or not. -- -- * 'utisName' - The unique ID that specifies the ThreatIntelSet that you want to update. -- -- * 'utisThreatIntelSetId' - The unique ID that specifies the ThreatIntelSet that you want to update. -- -- * 'utisDetectorId' - The detectorID that specifies the GuardDuty service whose ThreatIntelSet you want to update. updateThreatIntelSet :: Text -- ^ 'utisThreatIntelSetId' -> Text -- ^ 'utisDetectorId' -> UpdateThreatIntelSet updateThreatIntelSet pThreatIntelSetId_ pDetectorId_ = UpdateThreatIntelSet' { _utisLocation = Nothing , _utisActivate = Nothing , _utisName = Nothing , _utisThreatIntelSetId = pThreatIntelSetId_ , _utisDetectorId = pDetectorId_ } -- | The updated URI of the file that contains the ThreateIntelSet. For example (https://s3.us-west-2.amazonaws.com/my-bucket/my-object-key) utisLocation :: Lens' UpdateThreatIntelSet (Maybe Text) utisLocation = lens _utisLocation (\ s a -> s{_utisLocation = a}) -- | The updated boolean value that specifies whether the ThreateIntelSet is active or not. utisActivate :: Lens' UpdateThreatIntelSet (Maybe Bool) utisActivate = lens _utisActivate (\ s a -> s{_utisActivate = a}) -- | The unique ID that specifies the ThreatIntelSet that you want to update. utisName :: Lens' UpdateThreatIntelSet (Maybe Text) utisName = lens _utisName (\ s a -> s{_utisName = a}) -- | The unique ID that specifies the ThreatIntelSet that you want to update. utisThreatIntelSetId :: Lens' UpdateThreatIntelSet Text utisThreatIntelSetId = lens _utisThreatIntelSetId (\ s a -> s{_utisThreatIntelSetId = a}) -- | The detectorID that specifies the GuardDuty service whose ThreatIntelSet you want to update. utisDetectorId :: Lens' UpdateThreatIntelSet Text utisDetectorId = lens _utisDetectorId (\ s a -> s{_utisDetectorId = a}) instance AWSRequest UpdateThreatIntelSet where type Rs UpdateThreatIntelSet = UpdateThreatIntelSetResponse request = postJSON guardDuty response = receiveEmpty (\ s h x -> UpdateThreatIntelSetResponse' <$> (pure (fromEnum s))) instance Hashable UpdateThreatIntelSet where instance NFData UpdateThreatIntelSet where instance ToHeaders UpdateThreatIntelSet where toHeaders = const (mconcat ["Content-Type" =# ("application/x-amz-json-1.1" :: ByteString)]) instance ToJSON UpdateThreatIntelSet where toJSON UpdateThreatIntelSet'{..} = object (catMaybes [("location" .=) <$> _utisLocation, ("activate" .=) <$> _utisActivate, ("name" .=) <$> _utisName]) instance ToPath UpdateThreatIntelSet where toPath UpdateThreatIntelSet'{..} = mconcat ["/detector/", toBS _utisDetectorId, "/threatintelset/", toBS _utisThreatIntelSetId] instance ToQuery UpdateThreatIntelSet where toQuery = const mempty -- | /See:/ 'updateThreatIntelSetResponse' smart constructor. newtype UpdateThreatIntelSetResponse = UpdateThreatIntelSetResponse' { _utisrsResponseStatus :: Int } deriving (Eq, Read, Show, Data, Typeable, Generic) -- | Creates a value of 'UpdateThreatIntelSetResponse' with the minimum fields required to make a request. -- -- Use one of the following lenses to modify other fields as desired: -- -- * 'utisrsResponseStatus' - -- | The response status code. updateThreatIntelSetResponse :: Int -- ^ 'utisrsResponseStatus' -> UpdateThreatIntelSetResponse updateThreatIntelSetResponse pResponseStatus_ = UpdateThreatIntelSetResponse' {_utisrsResponseStatus = pResponseStatus_} -- | -- | The response status code. utisrsResponseStatus :: Lens' UpdateThreatIntelSetResponse Int utisrsResponseStatus = lens _utisrsResponseStatus (\ s a -> s{_utisrsResponseStatus = a}) instance NFData UpdateThreatIntelSetResponse where