{-# 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.AppStream.DisassociateFleet -- Copyright : (c) 2013-2016 Brendan Hay -- License : Mozilla Public License, v. 2.0. -- Maintainer : Brendan Hay -- Stability : auto-generated -- Portability : non-portable (GHC extensions) -- -- Disassociates a fleet from a stack. -- -- module Network.AWS.AppStream.DisassociateFleet ( -- * Creating a Request disassociateFleet , DisassociateFleet -- * Request Lenses , dfFleetName , dfStackName -- * Destructuring the Response , disassociateFleetResponse , DisassociateFleetResponse -- * Response Lenses , drsResponseStatus ) where import Network.AWS.AppStream.Types import Network.AWS.AppStream.Types.Product import Network.AWS.Lens import Network.AWS.Prelude import Network.AWS.Request import Network.AWS.Response -- | /See:/ 'disassociateFleet' smart constructor. data DisassociateFleet = DisassociateFleet' { _dfFleetName :: !Text , _dfStackName :: !Text } deriving (Eq,Read,Show,Data,Typeable,Generic) -- | Creates a value of 'DisassociateFleet' with the minimum fields required to make a request. -- -- Use one of the following lenses to modify other fields as desired: -- -- * 'dfFleetName' - The name of the fleet to disassociate. -- -- * 'dfStackName' - The name of the stack with which the fleet is associated. disassociateFleet :: Text -- ^ 'dfFleetName' -> Text -- ^ 'dfStackName' -> DisassociateFleet disassociateFleet pFleetName_ pStackName_ = DisassociateFleet' { _dfFleetName = pFleetName_ , _dfStackName = pStackName_ } -- | The name of the fleet to disassociate. dfFleetName :: Lens' DisassociateFleet Text dfFleetName = lens _dfFleetName (\ s a -> s{_dfFleetName = a}); -- | The name of the stack with which the fleet is associated. dfStackName :: Lens' DisassociateFleet Text dfStackName = lens _dfStackName (\ s a -> s{_dfStackName = a}); instance AWSRequest DisassociateFleet where type Rs DisassociateFleet = DisassociateFleetResponse request = postJSON appStream response = receiveEmpty (\ s h x -> DisassociateFleetResponse' <$> (pure (fromEnum s))) instance Hashable DisassociateFleet instance NFData DisassociateFleet instance ToHeaders DisassociateFleet where toHeaders = const (mconcat ["X-Amz-Target" =# ("PhotonAdminProxyService.DisassociateFleet" :: ByteString), "Content-Type" =# ("application/x-amz-json-1.1" :: ByteString)]) instance ToJSON DisassociateFleet where toJSON DisassociateFleet'{..} = object (catMaybes [Just ("FleetName" .= _dfFleetName), Just ("StackName" .= _dfStackName)]) instance ToPath DisassociateFleet where toPath = const "/" instance ToQuery DisassociateFleet where toQuery = const mempty -- | /See:/ 'disassociateFleetResponse' smart constructor. newtype DisassociateFleetResponse = DisassociateFleetResponse' { _drsResponseStatus :: Int } deriving (Eq,Read,Show,Data,Typeable,Generic) -- | Creates a value of 'DisassociateFleetResponse' with the minimum fields required to make a request. -- -- Use one of the following lenses to modify other fields as desired: -- -- * 'drsResponseStatus' - -- | The response status code. disassociateFleetResponse :: Int -- ^ 'drsResponseStatus' -> DisassociateFleetResponse disassociateFleetResponse pResponseStatus_ = DisassociateFleetResponse' { _drsResponseStatus = pResponseStatus_ } -- | -- | The response status code. drsResponseStatus :: Lens' DisassociateFleetResponse Int drsResponseStatus = lens _drsResponseStatus (\ s a -> s{_drsResponseStatus = a}); instance NFData DisassociateFleetResponse