amazonka-directconnect-2.0: gen/Amazonka/DirectConnect/DeleteDirectConnectGatewayAssociation.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.DirectConnect.DeleteDirectConnectGatewayAssociation
-- Copyright : (c) 2013-2023 Brendan Hay
-- License : Mozilla Public License, v. 2.0.
-- Maintainer : Brendan Hay
-- Stability : auto-generated
-- Portability : non-portable (GHC extensions)
--
-- Deletes the association between the specified Direct Connect gateway and
-- virtual private gateway.
--
-- We recommend that you specify the @associationID@ to delete the
-- association. Alternatively, if you own virtual gateway and a Direct
-- Connect gateway association, you can specify the @virtualGatewayId@ and
-- @directConnectGatewayId@ to delete an association.
module Amazonka.DirectConnect.DeleteDirectConnectGatewayAssociation
( -- * Creating a Request
DeleteDirectConnectGatewayAssociation (..),
newDeleteDirectConnectGatewayAssociation,
-- * Request Lenses
deleteDirectConnectGatewayAssociation_associationId,
deleteDirectConnectGatewayAssociation_directConnectGatewayId,
deleteDirectConnectGatewayAssociation_virtualGatewayId,
-- * Destructuring the Response
DeleteDirectConnectGatewayAssociationResponse (..),
newDeleteDirectConnectGatewayAssociationResponse,
-- * Response Lenses
deleteDirectConnectGatewayAssociationResponse_directConnectGatewayAssociation,
deleteDirectConnectGatewayAssociationResponse_httpStatus,
)
where
import qualified Amazonka.Core as Core
import qualified Amazonka.Core.Lens.Internal as Lens
import qualified Amazonka.Data as Data
import Amazonka.DirectConnect.Types
import qualified Amazonka.Prelude as Prelude
import qualified Amazonka.Request as Request
import qualified Amazonka.Response as Response
-- | /See:/ 'newDeleteDirectConnectGatewayAssociation' smart constructor.
data DeleteDirectConnectGatewayAssociation = DeleteDirectConnectGatewayAssociation'
{ -- | The ID of the Direct Connect gateway association.
associationId :: Prelude.Maybe Prelude.Text,
-- | The ID of the Direct Connect gateway.
directConnectGatewayId :: Prelude.Maybe Prelude.Text,
-- | The ID of the virtual private gateway.
virtualGatewayId :: Prelude.Maybe Prelude.Text
}
deriving (Prelude.Eq, Prelude.Read, Prelude.Show, Prelude.Generic)
-- |
-- Create a value of 'DeleteDirectConnectGatewayAssociation' 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:
--
-- 'associationId', 'deleteDirectConnectGatewayAssociation_associationId' - The ID of the Direct Connect gateway association.
--
-- 'directConnectGatewayId', 'deleteDirectConnectGatewayAssociation_directConnectGatewayId' - The ID of the Direct Connect gateway.
--
-- 'virtualGatewayId', 'deleteDirectConnectGatewayAssociation_virtualGatewayId' - The ID of the virtual private gateway.
newDeleteDirectConnectGatewayAssociation ::
DeleteDirectConnectGatewayAssociation
newDeleteDirectConnectGatewayAssociation =
DeleteDirectConnectGatewayAssociation'
{ associationId =
Prelude.Nothing,
directConnectGatewayId =
Prelude.Nothing,
virtualGatewayId = Prelude.Nothing
}
-- | The ID of the Direct Connect gateway association.
deleteDirectConnectGatewayAssociation_associationId :: Lens.Lens' DeleteDirectConnectGatewayAssociation (Prelude.Maybe Prelude.Text)
deleteDirectConnectGatewayAssociation_associationId = Lens.lens (\DeleteDirectConnectGatewayAssociation' {associationId} -> associationId) (\s@DeleteDirectConnectGatewayAssociation' {} a -> s {associationId = a} :: DeleteDirectConnectGatewayAssociation)
-- | The ID of the Direct Connect gateway.
deleteDirectConnectGatewayAssociation_directConnectGatewayId :: Lens.Lens' DeleteDirectConnectGatewayAssociation (Prelude.Maybe Prelude.Text)
deleteDirectConnectGatewayAssociation_directConnectGatewayId = Lens.lens (\DeleteDirectConnectGatewayAssociation' {directConnectGatewayId} -> directConnectGatewayId) (\s@DeleteDirectConnectGatewayAssociation' {} a -> s {directConnectGatewayId = a} :: DeleteDirectConnectGatewayAssociation)
-- | The ID of the virtual private gateway.
deleteDirectConnectGatewayAssociation_virtualGatewayId :: Lens.Lens' DeleteDirectConnectGatewayAssociation (Prelude.Maybe Prelude.Text)
deleteDirectConnectGatewayAssociation_virtualGatewayId = Lens.lens (\DeleteDirectConnectGatewayAssociation' {virtualGatewayId} -> virtualGatewayId) (\s@DeleteDirectConnectGatewayAssociation' {} a -> s {virtualGatewayId = a} :: DeleteDirectConnectGatewayAssociation)
instance
Core.AWSRequest
DeleteDirectConnectGatewayAssociation
where
type
AWSResponse
DeleteDirectConnectGatewayAssociation =
DeleteDirectConnectGatewayAssociationResponse
request overrides =
Request.postJSON (overrides defaultService)
response =
Response.receiveJSON
( \s h x ->
DeleteDirectConnectGatewayAssociationResponse'
Prelude.<$> (x Data..?> "directConnectGatewayAssociation")
Prelude.<*> (Prelude.pure (Prelude.fromEnum s))
)
instance
Prelude.Hashable
DeleteDirectConnectGatewayAssociation
where
hashWithSalt
_salt
DeleteDirectConnectGatewayAssociation' {..} =
_salt
`Prelude.hashWithSalt` associationId
`Prelude.hashWithSalt` directConnectGatewayId
`Prelude.hashWithSalt` virtualGatewayId
instance
Prelude.NFData
DeleteDirectConnectGatewayAssociation
where
rnf DeleteDirectConnectGatewayAssociation' {..} =
Prelude.rnf associationId
`Prelude.seq` Prelude.rnf directConnectGatewayId
`Prelude.seq` Prelude.rnf virtualGatewayId
instance
Data.ToHeaders
DeleteDirectConnectGatewayAssociation
where
toHeaders =
Prelude.const
( Prelude.mconcat
[ "X-Amz-Target"
Data.=# ( "OvertureService.DeleteDirectConnectGatewayAssociation" ::
Prelude.ByteString
),
"Content-Type"
Data.=# ( "application/x-amz-json-1.1" ::
Prelude.ByteString
)
]
)
instance
Data.ToJSON
DeleteDirectConnectGatewayAssociation
where
toJSON DeleteDirectConnectGatewayAssociation' {..} =
Data.object
( Prelude.catMaybes
[ ("associationId" Data..=) Prelude.<$> associationId,
("directConnectGatewayId" Data..=)
Prelude.<$> directConnectGatewayId,
("virtualGatewayId" Data..=)
Prelude.<$> virtualGatewayId
]
)
instance
Data.ToPath
DeleteDirectConnectGatewayAssociation
where
toPath = Prelude.const "/"
instance
Data.ToQuery
DeleteDirectConnectGatewayAssociation
where
toQuery = Prelude.const Prelude.mempty
-- | /See:/ 'newDeleteDirectConnectGatewayAssociationResponse' smart constructor.
data DeleteDirectConnectGatewayAssociationResponse = DeleteDirectConnectGatewayAssociationResponse'
{ -- | Information about the deleted association.
directConnectGatewayAssociation :: Prelude.Maybe DirectConnectGatewayAssociation,
-- | The response's http status code.
httpStatus :: Prelude.Int
}
deriving (Prelude.Eq, Prelude.Read, Prelude.Show, Prelude.Generic)
-- |
-- Create a value of 'DeleteDirectConnectGatewayAssociationResponse' 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:
--
-- 'directConnectGatewayAssociation', 'deleteDirectConnectGatewayAssociationResponse_directConnectGatewayAssociation' - Information about the deleted association.
--
-- 'httpStatus', 'deleteDirectConnectGatewayAssociationResponse_httpStatus' - The response's http status code.
newDeleteDirectConnectGatewayAssociationResponse ::
-- | 'httpStatus'
Prelude.Int ->
DeleteDirectConnectGatewayAssociationResponse
newDeleteDirectConnectGatewayAssociationResponse
pHttpStatus_ =
DeleteDirectConnectGatewayAssociationResponse'
{ directConnectGatewayAssociation =
Prelude.Nothing,
httpStatus = pHttpStatus_
}
-- | Information about the deleted association.
deleteDirectConnectGatewayAssociationResponse_directConnectGatewayAssociation :: Lens.Lens' DeleteDirectConnectGatewayAssociationResponse (Prelude.Maybe DirectConnectGatewayAssociation)
deleteDirectConnectGatewayAssociationResponse_directConnectGatewayAssociation = Lens.lens (\DeleteDirectConnectGatewayAssociationResponse' {directConnectGatewayAssociation} -> directConnectGatewayAssociation) (\s@DeleteDirectConnectGatewayAssociationResponse' {} a -> s {directConnectGatewayAssociation = a} :: DeleteDirectConnectGatewayAssociationResponse)
-- | The response's http status code.
deleteDirectConnectGatewayAssociationResponse_httpStatus :: Lens.Lens' DeleteDirectConnectGatewayAssociationResponse Prelude.Int
deleteDirectConnectGatewayAssociationResponse_httpStatus = Lens.lens (\DeleteDirectConnectGatewayAssociationResponse' {httpStatus} -> httpStatus) (\s@DeleteDirectConnectGatewayAssociationResponse' {} a -> s {httpStatus = a} :: DeleteDirectConnectGatewayAssociationResponse)
instance
Prelude.NFData
DeleteDirectConnectGatewayAssociationResponse
where
rnf
DeleteDirectConnectGatewayAssociationResponse' {..} =
Prelude.rnf directConnectGatewayAssociation
`Prelude.seq` Prelude.rnf httpStatus