amazonka-directconnect-2.0: gen/Amazonka/DirectConnect/ConfirmTransitVirtualInterface.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.ConfirmTransitVirtualInterface
-- Copyright : (c) 2013-2023 Brendan Hay
-- License : Mozilla Public License, v. 2.0.
-- Maintainer : Brendan Hay
-- Stability : auto-generated
-- Portability : non-portable (GHC extensions)
--
-- Accepts ownership of a transit virtual interface created by another
-- Amazon Web Services account.
--
-- After the owner of the transit virtual interface makes this call, the
-- specified transit virtual interface is created and made available to
-- handle traffic.
module Amazonka.DirectConnect.ConfirmTransitVirtualInterface
( -- * Creating a Request
ConfirmTransitVirtualInterface (..),
newConfirmTransitVirtualInterface,
-- * Request Lenses
confirmTransitVirtualInterface_virtualInterfaceId,
confirmTransitVirtualInterface_directConnectGatewayId,
-- * Destructuring the Response
ConfirmTransitVirtualInterfaceResponse (..),
newConfirmTransitVirtualInterfaceResponse,
-- * Response Lenses
confirmTransitVirtualInterfaceResponse_virtualInterfaceState,
confirmTransitVirtualInterfaceResponse_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:/ 'newConfirmTransitVirtualInterface' smart constructor.
data ConfirmTransitVirtualInterface = ConfirmTransitVirtualInterface'
{ -- | The ID of the virtual interface.
virtualInterfaceId :: Prelude.Text,
-- | The ID of the Direct Connect gateway.
directConnectGatewayId :: Prelude.Text
}
deriving (Prelude.Eq, Prelude.Read, Prelude.Show, Prelude.Generic)
-- |
-- Create a value of 'ConfirmTransitVirtualInterface' 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:
--
-- 'virtualInterfaceId', 'confirmTransitVirtualInterface_virtualInterfaceId' - The ID of the virtual interface.
--
-- 'directConnectGatewayId', 'confirmTransitVirtualInterface_directConnectGatewayId' - The ID of the Direct Connect gateway.
newConfirmTransitVirtualInterface ::
-- | 'virtualInterfaceId'
Prelude.Text ->
-- | 'directConnectGatewayId'
Prelude.Text ->
ConfirmTransitVirtualInterface
newConfirmTransitVirtualInterface
pVirtualInterfaceId_
pDirectConnectGatewayId_ =
ConfirmTransitVirtualInterface'
{ virtualInterfaceId =
pVirtualInterfaceId_,
directConnectGatewayId =
pDirectConnectGatewayId_
}
-- | The ID of the virtual interface.
confirmTransitVirtualInterface_virtualInterfaceId :: Lens.Lens' ConfirmTransitVirtualInterface Prelude.Text
confirmTransitVirtualInterface_virtualInterfaceId = Lens.lens (\ConfirmTransitVirtualInterface' {virtualInterfaceId} -> virtualInterfaceId) (\s@ConfirmTransitVirtualInterface' {} a -> s {virtualInterfaceId = a} :: ConfirmTransitVirtualInterface)
-- | The ID of the Direct Connect gateway.
confirmTransitVirtualInterface_directConnectGatewayId :: Lens.Lens' ConfirmTransitVirtualInterface Prelude.Text
confirmTransitVirtualInterface_directConnectGatewayId = Lens.lens (\ConfirmTransitVirtualInterface' {directConnectGatewayId} -> directConnectGatewayId) (\s@ConfirmTransitVirtualInterface' {} a -> s {directConnectGatewayId = a} :: ConfirmTransitVirtualInterface)
instance
Core.AWSRequest
ConfirmTransitVirtualInterface
where
type
AWSResponse ConfirmTransitVirtualInterface =
ConfirmTransitVirtualInterfaceResponse
request overrides =
Request.postJSON (overrides defaultService)
response =
Response.receiveJSON
( \s h x ->
ConfirmTransitVirtualInterfaceResponse'
Prelude.<$> (x Data..?> "virtualInterfaceState")
Prelude.<*> (Prelude.pure (Prelude.fromEnum s))
)
instance
Prelude.Hashable
ConfirmTransitVirtualInterface
where
hashWithSalt
_salt
ConfirmTransitVirtualInterface' {..} =
_salt
`Prelude.hashWithSalt` virtualInterfaceId
`Prelude.hashWithSalt` directConnectGatewayId
instance
Prelude.NFData
ConfirmTransitVirtualInterface
where
rnf ConfirmTransitVirtualInterface' {..} =
Prelude.rnf virtualInterfaceId
`Prelude.seq` Prelude.rnf directConnectGatewayId
instance
Data.ToHeaders
ConfirmTransitVirtualInterface
where
toHeaders =
Prelude.const
( Prelude.mconcat
[ "X-Amz-Target"
Data.=# ( "OvertureService.ConfirmTransitVirtualInterface" ::
Prelude.ByteString
),
"Content-Type"
Data.=# ( "application/x-amz-json-1.1" ::
Prelude.ByteString
)
]
)
instance Data.ToJSON ConfirmTransitVirtualInterface where
toJSON ConfirmTransitVirtualInterface' {..} =
Data.object
( Prelude.catMaybes
[ Prelude.Just
("virtualInterfaceId" Data..= virtualInterfaceId),
Prelude.Just
( "directConnectGatewayId"
Data..= directConnectGatewayId
)
]
)
instance Data.ToPath ConfirmTransitVirtualInterface where
toPath = Prelude.const "/"
instance Data.ToQuery ConfirmTransitVirtualInterface where
toQuery = Prelude.const Prelude.mempty
-- | /See:/ 'newConfirmTransitVirtualInterfaceResponse' smart constructor.
data ConfirmTransitVirtualInterfaceResponse = ConfirmTransitVirtualInterfaceResponse'
{ -- | The state of the virtual interface. The following are the possible
-- values:
--
-- - @confirming@: The creation of the virtual interface is pending
-- confirmation from the virtual interface owner. If the owner of the
-- virtual interface is different from the owner of the connection on
-- which it is provisioned, then the virtual interface will remain in
-- this state until it is confirmed by the virtual interface owner.
--
-- - @verifying@: This state only applies to public virtual interfaces.
-- Each public virtual interface needs validation before the virtual
-- interface can be created.
--
-- - @pending@: A virtual interface is in this state from the time that
-- it is created until the virtual interface is ready to forward
-- traffic.
--
-- - @available@: A virtual interface that is able to forward traffic.
--
-- - @down@: A virtual interface that is BGP down.
--
-- - @deleting@: A virtual interface is in this state immediately after
-- calling DeleteVirtualInterface until it can no longer forward
-- traffic.
--
-- - @deleted@: A virtual interface that cannot forward traffic.
--
-- - @rejected@: The virtual interface owner has declined creation of the
-- virtual interface. If a virtual interface in the @Confirming@ state
-- is deleted by the virtual interface owner, the virtual interface
-- enters the @Rejected@ state.
--
-- - @unknown@: The state of the virtual interface is not available.
virtualInterfaceState :: Prelude.Maybe VirtualInterfaceState,
-- | The response's http status code.
httpStatus :: Prelude.Int
}
deriving (Prelude.Eq, Prelude.Read, Prelude.Show, Prelude.Generic)
-- |
-- Create a value of 'ConfirmTransitVirtualInterfaceResponse' 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:
--
-- 'virtualInterfaceState', 'confirmTransitVirtualInterfaceResponse_virtualInterfaceState' - The state of the virtual interface. The following are the possible
-- values:
--
-- - @confirming@: The creation of the virtual interface is pending
-- confirmation from the virtual interface owner. If the owner of the
-- virtual interface is different from the owner of the connection on
-- which it is provisioned, then the virtual interface will remain in
-- this state until it is confirmed by the virtual interface owner.
--
-- - @verifying@: This state only applies to public virtual interfaces.
-- Each public virtual interface needs validation before the virtual
-- interface can be created.
--
-- - @pending@: A virtual interface is in this state from the time that
-- it is created until the virtual interface is ready to forward
-- traffic.
--
-- - @available@: A virtual interface that is able to forward traffic.
--
-- - @down@: A virtual interface that is BGP down.
--
-- - @deleting@: A virtual interface is in this state immediately after
-- calling DeleteVirtualInterface until it can no longer forward
-- traffic.
--
-- - @deleted@: A virtual interface that cannot forward traffic.
--
-- - @rejected@: The virtual interface owner has declined creation of the
-- virtual interface. If a virtual interface in the @Confirming@ state
-- is deleted by the virtual interface owner, the virtual interface
-- enters the @Rejected@ state.
--
-- - @unknown@: The state of the virtual interface is not available.
--
-- 'httpStatus', 'confirmTransitVirtualInterfaceResponse_httpStatus' - The response's http status code.
newConfirmTransitVirtualInterfaceResponse ::
-- | 'httpStatus'
Prelude.Int ->
ConfirmTransitVirtualInterfaceResponse
newConfirmTransitVirtualInterfaceResponse
pHttpStatus_ =
ConfirmTransitVirtualInterfaceResponse'
{ virtualInterfaceState =
Prelude.Nothing,
httpStatus = pHttpStatus_
}
-- | The state of the virtual interface. The following are the possible
-- values:
--
-- - @confirming@: The creation of the virtual interface is pending
-- confirmation from the virtual interface owner. If the owner of the
-- virtual interface is different from the owner of the connection on
-- which it is provisioned, then the virtual interface will remain in
-- this state until it is confirmed by the virtual interface owner.
--
-- - @verifying@: This state only applies to public virtual interfaces.
-- Each public virtual interface needs validation before the virtual
-- interface can be created.
--
-- - @pending@: A virtual interface is in this state from the time that
-- it is created until the virtual interface is ready to forward
-- traffic.
--
-- - @available@: A virtual interface that is able to forward traffic.
--
-- - @down@: A virtual interface that is BGP down.
--
-- - @deleting@: A virtual interface is in this state immediately after
-- calling DeleteVirtualInterface until it can no longer forward
-- traffic.
--
-- - @deleted@: A virtual interface that cannot forward traffic.
--
-- - @rejected@: The virtual interface owner has declined creation of the
-- virtual interface. If a virtual interface in the @Confirming@ state
-- is deleted by the virtual interface owner, the virtual interface
-- enters the @Rejected@ state.
--
-- - @unknown@: The state of the virtual interface is not available.
confirmTransitVirtualInterfaceResponse_virtualInterfaceState :: Lens.Lens' ConfirmTransitVirtualInterfaceResponse (Prelude.Maybe VirtualInterfaceState)
confirmTransitVirtualInterfaceResponse_virtualInterfaceState = Lens.lens (\ConfirmTransitVirtualInterfaceResponse' {virtualInterfaceState} -> virtualInterfaceState) (\s@ConfirmTransitVirtualInterfaceResponse' {} a -> s {virtualInterfaceState = a} :: ConfirmTransitVirtualInterfaceResponse)
-- | The response's http status code.
confirmTransitVirtualInterfaceResponse_httpStatus :: Lens.Lens' ConfirmTransitVirtualInterfaceResponse Prelude.Int
confirmTransitVirtualInterfaceResponse_httpStatus = Lens.lens (\ConfirmTransitVirtualInterfaceResponse' {httpStatus} -> httpStatus) (\s@ConfirmTransitVirtualInterfaceResponse' {} a -> s {httpStatus = a} :: ConfirmTransitVirtualInterfaceResponse)
instance
Prelude.NFData
ConfirmTransitVirtualInterfaceResponse
where
rnf ConfirmTransitVirtualInterfaceResponse' {..} =
Prelude.rnf virtualInterfaceState
`Prelude.seq` Prelude.rnf httpStatus