amazonka-ec2-2.0: gen/Amazonka/EC2/AttachInternetGateway.hs
{-# LANGUAGE DeriveGeneric #-}
{-# LANGUAGE DuplicateRecordFields #-}
{-# LANGUAGE NamedFieldPuns #-}
{-# LANGUAGE OverloadedStrings #-}
{-# LANGUAGE RecordWildCards #-}
{-# LANGUAGE StrictData #-}
{-# LANGUAGE TypeFamilies #-}
{-# LANGUAGE NoImplicitPrelude #-}
{-# OPTIONS_GHC -fno-warn-unused-binds #-}
{-# OPTIONS_GHC -fno-warn-unused-imports #-}
{-# OPTIONS_GHC -fno-warn-unused-matches #-}
-- Derived from AWS service descriptions, licensed under Apache 2.0.
-- |
-- Module : Amazonka.EC2.AttachInternetGateway
-- Copyright : (c) 2013-2023 Brendan Hay
-- License : Mozilla Public License, v. 2.0.
-- Maintainer : Brendan Hay
-- Stability : auto-generated
-- Portability : non-portable (GHC extensions)
--
-- Attaches an internet gateway or a virtual private gateway to a VPC,
-- enabling connectivity between the internet and the VPC. For more
-- information about your VPC and internet gateway, see the
-- <https://docs.aws.amazon.com/vpc/latest/userguide/ Amazon Virtual Private Cloud User Guide>.
module Amazonka.EC2.AttachInternetGateway
( -- * Creating a Request
AttachInternetGateway (..),
newAttachInternetGateway,
-- * Request Lenses
attachInternetGateway_dryRun,
attachInternetGateway_internetGatewayId,
attachInternetGateway_vpcId,
-- * Destructuring the Response
AttachInternetGatewayResponse (..),
newAttachInternetGatewayResponse,
)
where
import qualified Amazonka.Core as Core
import qualified Amazonka.Core.Lens.Internal as Lens
import qualified Amazonka.Data as Data
import Amazonka.EC2.Types
import qualified Amazonka.Prelude as Prelude
import qualified Amazonka.Request as Request
import qualified Amazonka.Response as Response
-- | /See:/ 'newAttachInternetGateway' smart constructor.
data AttachInternetGateway = AttachInternetGateway'
{ -- | 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@.
dryRun :: Prelude.Maybe Prelude.Bool,
-- | The ID of the internet gateway.
internetGatewayId :: Prelude.Text,
-- | The ID of the VPC.
vpcId :: Prelude.Text
}
deriving (Prelude.Eq, Prelude.Read, Prelude.Show, Prelude.Generic)
-- |
-- Create a value of 'AttachInternetGateway' with all optional fields omitted.
--
-- Use <https://hackage.haskell.org/package/generic-lens generic-lens> or <https://hackage.haskell.org/package/optics optics> to modify other optional fields.
--
-- The following record fields are available, with the corresponding lenses provided
-- for backwards compatibility:
--
-- 'dryRun', 'attachInternetGateway_dryRun' - 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@.
--
-- 'internetGatewayId', 'attachInternetGateway_internetGatewayId' - The ID of the internet gateway.
--
-- 'vpcId', 'attachInternetGateway_vpcId' - The ID of the VPC.
newAttachInternetGateway ::
-- | 'internetGatewayId'
Prelude.Text ->
-- | 'vpcId'
Prelude.Text ->
AttachInternetGateway
newAttachInternetGateway pInternetGatewayId_ pVpcId_ =
AttachInternetGateway'
{ dryRun = Prelude.Nothing,
internetGatewayId = pInternetGatewayId_,
vpcId = 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@.
attachInternetGateway_dryRun :: Lens.Lens' AttachInternetGateway (Prelude.Maybe Prelude.Bool)
attachInternetGateway_dryRun = Lens.lens (\AttachInternetGateway' {dryRun} -> dryRun) (\s@AttachInternetGateway' {} a -> s {dryRun = a} :: AttachInternetGateway)
-- | The ID of the internet gateway.
attachInternetGateway_internetGatewayId :: Lens.Lens' AttachInternetGateway Prelude.Text
attachInternetGateway_internetGatewayId = Lens.lens (\AttachInternetGateway' {internetGatewayId} -> internetGatewayId) (\s@AttachInternetGateway' {} a -> s {internetGatewayId = a} :: AttachInternetGateway)
-- | The ID of the VPC.
attachInternetGateway_vpcId :: Lens.Lens' AttachInternetGateway Prelude.Text
attachInternetGateway_vpcId = Lens.lens (\AttachInternetGateway' {vpcId} -> vpcId) (\s@AttachInternetGateway' {} a -> s {vpcId = a} :: AttachInternetGateway)
instance Core.AWSRequest AttachInternetGateway where
type
AWSResponse AttachInternetGateway =
AttachInternetGatewayResponse
request overrides =
Request.postQuery (overrides defaultService)
response =
Response.receiveNull AttachInternetGatewayResponse'
instance Prelude.Hashable AttachInternetGateway where
hashWithSalt _salt AttachInternetGateway' {..} =
_salt
`Prelude.hashWithSalt` dryRun
`Prelude.hashWithSalt` internetGatewayId
`Prelude.hashWithSalt` vpcId
instance Prelude.NFData AttachInternetGateway where
rnf AttachInternetGateway' {..} =
Prelude.rnf dryRun
`Prelude.seq` Prelude.rnf internetGatewayId
`Prelude.seq` Prelude.rnf vpcId
instance Data.ToHeaders AttachInternetGateway where
toHeaders = Prelude.const Prelude.mempty
instance Data.ToPath AttachInternetGateway where
toPath = Prelude.const "/"
instance Data.ToQuery AttachInternetGateway where
toQuery AttachInternetGateway' {..} =
Prelude.mconcat
[ "Action"
Data.=: ("AttachInternetGateway" :: Prelude.ByteString),
"Version"
Data.=: ("2016-11-15" :: Prelude.ByteString),
"DryRun" Data.=: dryRun,
"InternetGatewayId" Data.=: internetGatewayId,
"VpcId" Data.=: vpcId
]
-- | /See:/ 'newAttachInternetGatewayResponse' smart constructor.
data AttachInternetGatewayResponse = AttachInternetGatewayResponse'
{
}
deriving (Prelude.Eq, Prelude.Read, Prelude.Show, Prelude.Generic)
-- |
-- Create a value of 'AttachInternetGatewayResponse' with all optional fields omitted.
--
-- Use <https://hackage.haskell.org/package/generic-lens generic-lens> or <https://hackage.haskell.org/package/optics optics> to modify other optional fields.
newAttachInternetGatewayResponse ::
AttachInternetGatewayResponse
newAttachInternetGatewayResponse =
AttachInternetGatewayResponse'
instance Prelude.NFData AttachInternetGatewayResponse where
rnf _ = ()