amazonka-ec2-1.1.0: gen/Network/AWS/EC2/DeleteVPCEndpoints.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.EC2.DeleteVPCEndpoints
-- 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 one or more specified VPC endpoints. Deleting the endpoint also
-- deletes the endpoint routes in the route tables that were associated
-- with the endpoint.
--
-- /See:/ <http://docs.aws.amazon.com/AWSEC2/latest/APIReference/ApiReference-query-DeleteVPCEndpoints.html AWS API Reference> for DeleteVPCEndpoints.
module Network.AWS.EC2.DeleteVPCEndpoints
(
-- * Creating a Request
deleteVPCEndpoints
, DeleteVPCEndpoints
-- * Request Lenses
, dveDryRun
, dveVPCEndpointIds
-- * Destructuring the Response
, deleteVPCEndpointsResponse
, DeleteVPCEndpointsResponse
-- * Response Lenses
, dversUnsuccessful
, dversStatus
) where
import Network.AWS.EC2.Types
import Network.AWS.EC2.Types.Product
import Network.AWS.Prelude
import Network.AWS.Request
import Network.AWS.Response
-- | /See:/ 'deleteVPCEndpoints' smart constructor.
data DeleteVPCEndpoints = DeleteVPCEndpoints'
{ _dveDryRun :: !(Maybe Bool)
, _dveVPCEndpointIds :: ![Text]
} deriving (Eq,Read,Show,Data,Typeable,Generic)
-- | Creates a value of 'DeleteVPCEndpoints' with the minimum fields required to make a request.
--
-- Use one of the following lenses to modify other fields as desired:
--
-- * 'dveDryRun'
--
-- * 'dveVPCEndpointIds'
deleteVPCEndpoints
:: DeleteVPCEndpoints
deleteVPCEndpoints =
DeleteVPCEndpoints'
{ _dveDryRun = Nothing
, _dveVPCEndpointIds = mempty
}
-- | Checks whether you have the required permissions for the action, without
-- actually making the request, and provides an error response. If you have
-- the required permissions, the error response is 'DryRunOperation'.
-- Otherwise, it is 'UnauthorizedOperation'.
dveDryRun :: Lens' DeleteVPCEndpoints (Maybe Bool)
dveDryRun = lens _dveDryRun (\ s a -> s{_dveDryRun = a});
-- | One or more endpoint IDs.
dveVPCEndpointIds :: Lens' DeleteVPCEndpoints [Text]
dveVPCEndpointIds = lens _dveVPCEndpointIds (\ s a -> s{_dveVPCEndpointIds = a}) . _Coerce;
instance AWSRequest DeleteVPCEndpoints where
type Sv DeleteVPCEndpoints = EC2
type Rs DeleteVPCEndpoints =
DeleteVPCEndpointsResponse
request = postQuery
response
= receiveXML
(\ s h x ->
DeleteVPCEndpointsResponse' <$>
(x .@? "unsuccessful" .!@ mempty >>=
may (parseXMLList "item"))
<*> (pure (fromEnum s)))
instance ToHeaders DeleteVPCEndpoints where
toHeaders = const mempty
instance ToPath DeleteVPCEndpoints where
toPath = const "/"
instance ToQuery DeleteVPCEndpoints where
toQuery DeleteVPCEndpoints'{..}
= mconcat
["Action" =: ("DeleteVpcEndpoints" :: ByteString),
"Version" =: ("2015-04-15" :: ByteString),
"DryRun" =: _dveDryRun,
toQueryList "VpcEndpointId" _dveVPCEndpointIds]
-- | /See:/ 'deleteVPCEndpointsResponse' smart constructor.
data DeleteVPCEndpointsResponse = DeleteVPCEndpointsResponse'
{ _dversUnsuccessful :: !(Maybe [UnsuccessfulItem])
, _dversStatus :: !Int
} deriving (Eq,Read,Show,Data,Typeable,Generic)
-- | Creates a value of 'DeleteVPCEndpointsResponse' with the minimum fields required to make a request.
--
-- Use one of the following lenses to modify other fields as desired:
--
-- * 'dversUnsuccessful'
--
-- * 'dversStatus'
deleteVPCEndpointsResponse
:: Int -- ^ 'dversStatus'
-> DeleteVPCEndpointsResponse
deleteVPCEndpointsResponse pStatus_ =
DeleteVPCEndpointsResponse'
{ _dversUnsuccessful = Nothing
, _dversStatus = pStatus_
}
-- | Information about the endpoints that were not successfully deleted.
dversUnsuccessful :: Lens' DeleteVPCEndpointsResponse [UnsuccessfulItem]
dversUnsuccessful = lens _dversUnsuccessful (\ s a -> s{_dversUnsuccessful = a}) . _Default . _Coerce;
-- | The response status code.
dversStatus :: Lens' DeleteVPCEndpointsResponse Int
dversStatus = lens _dversStatus (\ s a -> s{_dversStatus = a});