amazonka-efs-1.2.0: gen/Network/AWS/EFS/DeleteMountTarget.hs
{-# 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.EFS.DeleteMountTarget
-- Copyright : (c) 2013-2015 Brendan Hay
-- License : Mozilla Public License, v. 2.0.
-- Maintainer : Brendan Hay <brendan.g.hay@gmail.com>
-- Stability : auto-generated
-- Portability : non-portable (GHC extensions)
--
-- Deletes the specified mount target.
--
-- This operation forcibly breaks any mounts of the file system via the
-- mount target being deleted, which might disrupt instances or
-- applications using those mounts. To avoid applications getting cut off
-- abruptly, you might consider unmounting any mounts of the mount target,
-- if feasible. The operation also deletes the associated network
-- interface. Uncommitted writes may be lost, but breaking a mount target
-- using this operation does not corrupt the file system itself. The file
-- system you created remains. You can mount an EC2 instance in your VPC
-- using another mount target.
--
-- This operation requires permission for the following action on the file
-- system:
--
-- - 'elasticfilesystem:DeleteMountTarget'
--
-- The 'DeleteMountTarget' call returns while the mount target state is
-- still \"deleting\". You can check the mount target deletion by calling
-- the DescribeMountTargets API, which returns a list of mount target
-- descriptions for the given file system.
--
-- The operation also requires permission for the following Amazon EC2
-- action on the mount target\'s network interface:
--
-- - 'ec2:DeleteNetworkInterface'
--
-- /See:/ <http://docs.aws.amazon.com/directoryservice/latest/devguide/API_DeleteMountTarget.html AWS API Reference> for DeleteMountTarget.
module Network.AWS.EFS.DeleteMountTarget
(
-- * Creating a Request
deleteMountTarget
, DeleteMountTarget
-- * Request Lenses
, dmtMountTargetId
-- * Destructuring the Response
, deleteMountTargetResponse
, DeleteMountTargetResponse
) where
import Network.AWS.EFS.Types
import Network.AWS.EFS.Types.Product
import Network.AWS.Prelude
import Network.AWS.Request
import Network.AWS.Response
-- | /See:/ 'deleteMountTarget' smart constructor.
newtype DeleteMountTarget = DeleteMountTarget'
{ _dmtMountTargetId :: Text
} deriving (Eq,Read,Show,Data,Typeable,Generic)
-- | Creates a value of 'DeleteMountTarget' with the minimum fields required to make a request.
--
-- Use one of the following lenses to modify other fields as desired:
--
-- * 'dmtMountTargetId'
deleteMountTarget
:: Text -- ^ 'dmtMountTargetId'
-> DeleteMountTarget
deleteMountTarget pMountTargetId_ =
DeleteMountTarget'
{ _dmtMountTargetId = pMountTargetId_
}
-- | String. The ID of the mount target to delete.
dmtMountTargetId :: Lens' DeleteMountTarget Text
dmtMountTargetId = lens _dmtMountTargetId (\ s a -> s{_dmtMountTargetId = a});
instance AWSRequest DeleteMountTarget where
type Rs DeleteMountTarget = DeleteMountTargetResponse
request = delete eFS
response = receiveNull DeleteMountTargetResponse'
instance ToHeaders DeleteMountTarget where
toHeaders = const mempty
instance ToPath DeleteMountTarget where
toPath DeleteMountTarget'{..}
= mconcat
["/2015-02-01/mount-targets/",
toBS _dmtMountTargetId]
instance ToQuery DeleteMountTarget where
toQuery = const mempty
-- | /See:/ 'deleteMountTargetResponse' smart constructor.
data DeleteMountTargetResponse =
DeleteMountTargetResponse'
deriving (Eq,Read,Show,Data,Typeable,Generic)
-- | Creates a value of 'DeleteMountTargetResponse' with the minimum fields required to make a request.
--
deleteMountTargetResponse
:: DeleteMountTargetResponse
deleteMountTargetResponse = DeleteMountTargetResponse'