{-# 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.AttachInternetGateway -- Copyright : (c) 2013-2015 Brendan Hay -- License : Mozilla Public License, v. 2.0. -- Maintainer : Brendan Hay -- Stability : auto-generated -- Portability : non-portable (GHC extensions) -- -- Attaches an Internet gateway to a VPC, enabling connectivity between the -- Internet and the VPC. For more information about your VPC and Internet -- gateway, see the -- . -- -- /See:/ for AttachInternetGateway. module Network.AWS.EC2.AttachInternetGateway ( -- * Creating a Request attachInternetGateway , AttachInternetGateway -- * Request Lenses , aigDryRun , aigInternetGatewayId , aigVPCId -- * Destructuring the Response , attachInternetGatewayResponse , AttachInternetGatewayResponse ) 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:/ 'attachInternetGateway' smart constructor. data AttachInternetGateway = AttachInternetGateway' { _aigDryRun :: !(Maybe Bool) , _aigInternetGatewayId :: !Text , _aigVPCId :: !Text } deriving (Eq,Read,Show,Data,Typeable,Generic) -- | Creates a value of 'AttachInternetGateway' with the minimum fields required to make a request. -- -- Use one of the following lenses to modify other fields as desired: -- -- * 'aigDryRun' -- -- * 'aigInternetGatewayId' -- -- * 'aigVPCId' attachInternetGateway :: Text -- ^ 'aigInternetGatewayId' -> Text -- ^ 'aigVPCId' -> AttachInternetGateway attachInternetGateway pInternetGatewayId_ pVPCId_ = AttachInternetGateway' { _aigDryRun = Nothing , _aigInternetGatewayId = pInternetGatewayId_ , _aigVPCId = pVPCId_ } -- | 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'. aigDryRun :: Lens' AttachInternetGateway (Maybe Bool) aigDryRun = lens _aigDryRun (\ s a -> s{_aigDryRun = a}); -- | The ID of the Internet gateway. aigInternetGatewayId :: Lens' AttachInternetGateway Text aigInternetGatewayId = lens _aigInternetGatewayId (\ s a -> s{_aigInternetGatewayId = a}); -- | The ID of the VPC. aigVPCId :: Lens' AttachInternetGateway Text aigVPCId = lens _aigVPCId (\ s a -> s{_aigVPCId = a}); instance AWSRequest AttachInternetGateway where type Sv AttachInternetGateway = EC2 type Rs AttachInternetGateway = AttachInternetGatewayResponse request = post response = receiveNull AttachInternetGatewayResponse' instance ToHeaders AttachInternetGateway where toHeaders = const mempty instance ToPath AttachInternetGateway where toPath = const "/" instance ToQuery AttachInternetGateway where toQuery AttachInternetGateway'{..} = mconcat ["Action" =: ("AttachInternetGateway" :: ByteString), "Version" =: ("2015-04-15" :: ByteString), "DryRun" =: _aigDryRun, "InternetGatewayId" =: _aigInternetGatewayId, "VpcId" =: _aigVPCId] -- | /See:/ 'attachInternetGatewayResponse' smart constructor. data AttachInternetGatewayResponse = AttachInternetGatewayResponse' deriving (Eq,Read,Show,Data,Typeable,Generic) -- | Creates a value of 'AttachInternetGatewayResponse' with the minimum fields required to make a request. -- attachInternetGatewayResponse :: AttachInternetGatewayResponse attachInternetGatewayResponse = AttachInternetGatewayResponse'