{-# LANGUAGE DeriveGeneric #-} {-# LANGUAGE DuplicateRecordFields #-} {-# LANGUAGE NamedFieldPuns #-} {-# LANGUAGE OverloadedStrings #-} {-# LANGUAGE RecordWildCards #-} {-# LANGUAGE StrictData #-} {-# LANGUAGE NoImplicitPrelude #-} {-# 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.Types.TransitGatewayConnectPeerConfiguration -- Copyright : (c) 2013-2023 Brendan Hay -- License : Mozilla Public License, v. 2.0. -- Maintainer : Brendan Hay -- Stability : auto-generated -- Portability : non-portable (GHC extensions) module Amazonka.EC2.Types.TransitGatewayConnectPeerConfiguration where import qualified Amazonka.Core as Core import qualified Amazonka.Core.Lens.Internal as Lens import qualified Amazonka.Data as Data import Amazonka.EC2.Internal import Amazonka.EC2.Types.ProtocolValue import Amazonka.EC2.Types.TransitGatewayAttachmentBgpConfiguration import qualified Amazonka.Prelude as Prelude -- | Describes the Connect peer details. -- -- /See:/ 'newTransitGatewayConnectPeerConfiguration' smart constructor. data TransitGatewayConnectPeerConfiguration = TransitGatewayConnectPeerConfiguration' { -- | The BGP configuration details. bgpConfigurations :: Prelude.Maybe [TransitGatewayAttachmentBgpConfiguration], -- | The range of interior BGP peer IP addresses. insideCidrBlocks :: Prelude.Maybe [Prelude.Text], -- | The Connect peer IP address on the appliance side of the tunnel. peerAddress :: Prelude.Maybe Prelude.Text, -- | The tunnel protocol. protocol :: Prelude.Maybe ProtocolValue, -- | The Connect peer IP address on the transit gateway side of the tunnel. transitGatewayAddress :: Prelude.Maybe Prelude.Text } deriving (Prelude.Eq, Prelude.Read, Prelude.Show, Prelude.Generic) -- | -- Create a value of 'TransitGatewayConnectPeerConfiguration' with all optional fields omitted. -- -- Use or to modify other optional fields. -- -- The following record fields are available, with the corresponding lenses provided -- for backwards compatibility: -- -- 'bgpConfigurations', 'transitGatewayConnectPeerConfiguration_bgpConfigurations' - The BGP configuration details. -- -- 'insideCidrBlocks', 'transitGatewayConnectPeerConfiguration_insideCidrBlocks' - The range of interior BGP peer IP addresses. -- -- 'peerAddress', 'transitGatewayConnectPeerConfiguration_peerAddress' - The Connect peer IP address on the appliance side of the tunnel. -- -- 'protocol', 'transitGatewayConnectPeerConfiguration_protocol' - The tunnel protocol. -- -- 'transitGatewayAddress', 'transitGatewayConnectPeerConfiguration_transitGatewayAddress' - The Connect peer IP address on the transit gateway side of the tunnel. newTransitGatewayConnectPeerConfiguration :: TransitGatewayConnectPeerConfiguration newTransitGatewayConnectPeerConfiguration = TransitGatewayConnectPeerConfiguration' { bgpConfigurations = Prelude.Nothing, insideCidrBlocks = Prelude.Nothing, peerAddress = Prelude.Nothing, protocol = Prelude.Nothing, transitGatewayAddress = Prelude.Nothing } -- | The BGP configuration details. transitGatewayConnectPeerConfiguration_bgpConfigurations :: Lens.Lens' TransitGatewayConnectPeerConfiguration (Prelude.Maybe [TransitGatewayAttachmentBgpConfiguration]) transitGatewayConnectPeerConfiguration_bgpConfigurations = Lens.lens (\TransitGatewayConnectPeerConfiguration' {bgpConfigurations} -> bgpConfigurations) (\s@TransitGatewayConnectPeerConfiguration' {} a -> s {bgpConfigurations = a} :: TransitGatewayConnectPeerConfiguration) Prelude.. Lens.mapping Lens.coerced -- | The range of interior BGP peer IP addresses. transitGatewayConnectPeerConfiguration_insideCidrBlocks :: Lens.Lens' TransitGatewayConnectPeerConfiguration (Prelude.Maybe [Prelude.Text]) transitGatewayConnectPeerConfiguration_insideCidrBlocks = Lens.lens (\TransitGatewayConnectPeerConfiguration' {insideCidrBlocks} -> insideCidrBlocks) (\s@TransitGatewayConnectPeerConfiguration' {} a -> s {insideCidrBlocks = a} :: TransitGatewayConnectPeerConfiguration) Prelude.. Lens.mapping Lens.coerced -- | The Connect peer IP address on the appliance side of the tunnel. transitGatewayConnectPeerConfiguration_peerAddress :: Lens.Lens' TransitGatewayConnectPeerConfiguration (Prelude.Maybe Prelude.Text) transitGatewayConnectPeerConfiguration_peerAddress = Lens.lens (\TransitGatewayConnectPeerConfiguration' {peerAddress} -> peerAddress) (\s@TransitGatewayConnectPeerConfiguration' {} a -> s {peerAddress = a} :: TransitGatewayConnectPeerConfiguration) -- | The tunnel protocol. transitGatewayConnectPeerConfiguration_protocol :: Lens.Lens' TransitGatewayConnectPeerConfiguration (Prelude.Maybe ProtocolValue) transitGatewayConnectPeerConfiguration_protocol = Lens.lens (\TransitGatewayConnectPeerConfiguration' {protocol} -> protocol) (\s@TransitGatewayConnectPeerConfiguration' {} a -> s {protocol = a} :: TransitGatewayConnectPeerConfiguration) -- | The Connect peer IP address on the transit gateway side of the tunnel. transitGatewayConnectPeerConfiguration_transitGatewayAddress :: Lens.Lens' TransitGatewayConnectPeerConfiguration (Prelude.Maybe Prelude.Text) transitGatewayConnectPeerConfiguration_transitGatewayAddress = Lens.lens (\TransitGatewayConnectPeerConfiguration' {transitGatewayAddress} -> transitGatewayAddress) (\s@TransitGatewayConnectPeerConfiguration' {} a -> s {transitGatewayAddress = a} :: TransitGatewayConnectPeerConfiguration) instance Data.FromXML TransitGatewayConnectPeerConfiguration where parseXML x = TransitGatewayConnectPeerConfiguration' Prelude.<$> ( x Data..@? "bgpConfigurations" Core..!@ Prelude.mempty Prelude.>>= Core.may (Data.parseXMLList "item") ) Prelude.<*> ( x Data..@? "insideCidrBlocks" Core..!@ Prelude.mempty Prelude.>>= Core.may (Data.parseXMLList "item") ) Prelude.<*> (x Data..@? "peerAddress") Prelude.<*> (x Data..@? "protocol") Prelude.<*> (x Data..@? "transitGatewayAddress") instance Prelude.Hashable TransitGatewayConnectPeerConfiguration where hashWithSalt _salt TransitGatewayConnectPeerConfiguration' {..} = _salt `Prelude.hashWithSalt` bgpConfigurations `Prelude.hashWithSalt` insideCidrBlocks `Prelude.hashWithSalt` peerAddress `Prelude.hashWithSalt` protocol `Prelude.hashWithSalt` transitGatewayAddress instance Prelude.NFData TransitGatewayConnectPeerConfiguration where rnf TransitGatewayConnectPeerConfiguration' {..} = Prelude.rnf bgpConfigurations `Prelude.seq` Prelude.rnf insideCidrBlocks `Prelude.seq` Prelude.rnf peerAddress `Prelude.seq` Prelude.rnf protocol `Prelude.seq` Prelude.rnf transitGatewayAddress