{-# 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.DirectConnect.DeleteConnection -- Copyright : (c) 2013-2015 Brendan Hay -- License : Mozilla Public License, v. 2.0. -- Maintainer : Brendan Hay -- Stability : auto-generated -- Portability : non-portable (GHC extensions) -- -- Deletes the connection. -- -- Deleting a connection only stops the AWS Direct Connect port hour and -- data transfer charges. You need to cancel separately with the providers -- any services or charges for cross-connects or network circuits that -- connect you to the AWS Direct Connect location. -- -- /See:/ for DeleteConnection. module Network.AWS.DirectConnect.DeleteConnection ( -- * Creating a Request deleteConnection , DeleteConnection -- * Request Lenses , dcConnectionId -- * Destructuring the Response , connection , Connection -- * Response Lenses , cVlan , cLocation , cConnectionId , cPartnerName , cConnectionName , cBandwidth , cOwnerAccount , cRegion , cConnectionState ) where import Network.AWS.DirectConnect.Types import Network.AWS.DirectConnect.Types.Product import Network.AWS.Prelude import Network.AWS.Request import Network.AWS.Response -- | Container for the parameters to the DeleteConnection operation. -- -- /See:/ 'deleteConnection' smart constructor. newtype DeleteConnection = DeleteConnection' { _dcConnectionId :: Text } deriving (Eq,Read,Show,Data,Typeable,Generic) -- | Creates a value of 'DeleteConnection' with the minimum fields required to make a request. -- -- Use one of the following lenses to modify other fields as desired: -- -- * 'dcConnectionId' deleteConnection :: Text -- ^ 'dcConnectionId' -> DeleteConnection deleteConnection pConnectionId_ = DeleteConnection' { _dcConnectionId = pConnectionId_ } -- | Undocumented member. dcConnectionId :: Lens' DeleteConnection Text dcConnectionId = lens _dcConnectionId (\ s a -> s{_dcConnectionId = a}); instance AWSRequest DeleteConnection where type Rs DeleteConnection = Connection request = postJSON directConnect response = receiveJSON (\ s h x -> eitherParseJSON x) instance ToHeaders DeleteConnection where toHeaders = const (mconcat ["X-Amz-Target" =# ("OvertureService.DeleteConnection" :: ByteString), "Content-Type" =# ("application/x-amz-json-1.1" :: ByteString)]) instance ToJSON DeleteConnection where toJSON DeleteConnection'{..} = object (catMaybes [Just ("connectionId" .= _dcConnectionId)]) instance ToPath DeleteConnection where toPath = const "/" instance ToQuery DeleteConnection where toQuery = const mempty