amazonka-ec2-2.0: gen/Amazonka/EC2/Types/ClientVpnConnection.hs
{-# 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.ClientVpnConnection
-- 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.ClientVpnConnection 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.ClientVpnConnectionStatus
import qualified Amazonka.Prelude as Prelude
-- | Describes a client connection.
--
-- /See:/ 'newClientVpnConnection' smart constructor.
data ClientVpnConnection = ClientVpnConnection'
{ -- | The IP address of the client.
clientIp :: Prelude.Maybe Prelude.Text,
-- | The ID of the Client VPN endpoint to which the client is connected.
clientVpnEndpointId :: Prelude.Maybe Prelude.Text,
-- | The common name associated with the client. This is either the name of
-- the client certificate, or the Active Directory user name.
commonName :: Prelude.Maybe Prelude.Text,
-- | The date and time the client connection was terminated.
connectionEndTime :: Prelude.Maybe Prelude.Text,
-- | The date and time the client connection was established.
connectionEstablishedTime :: Prelude.Maybe Prelude.Text,
-- | The ID of the client connection.
connectionId :: Prelude.Maybe Prelude.Text,
-- | The number of bytes received by the client.
egressBytes :: Prelude.Maybe Prelude.Text,
-- | The number of packets received by the client.
egressPackets :: Prelude.Maybe Prelude.Text,
-- | The number of bytes sent by the client.
ingressBytes :: Prelude.Maybe Prelude.Text,
-- | The number of packets sent by the client.
ingressPackets :: Prelude.Maybe Prelude.Text,
-- | The statuses returned by the client connect handler for posture
-- compliance, if applicable.
postureComplianceStatuses :: Prelude.Maybe [Prelude.Text],
-- | The current state of the client connection.
status :: Prelude.Maybe ClientVpnConnectionStatus,
-- | The current date and time.
timestamp :: Prelude.Maybe Prelude.Text,
-- | The username of the client who established the client connection. This
-- information is only provided if Active Directory client authentication
-- is used.
username :: Prelude.Maybe Prelude.Text
}
deriving (Prelude.Eq, Prelude.Read, Prelude.Show, Prelude.Generic)
-- |
-- Create a value of 'ClientVpnConnection' 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:
--
-- 'clientIp', 'clientVpnConnection_clientIp' - The IP address of the client.
--
-- 'clientVpnEndpointId', 'clientVpnConnection_clientVpnEndpointId' - The ID of the Client VPN endpoint to which the client is connected.
--
-- 'commonName', 'clientVpnConnection_commonName' - The common name associated with the client. This is either the name of
-- the client certificate, or the Active Directory user name.
--
-- 'connectionEndTime', 'clientVpnConnection_connectionEndTime' - The date and time the client connection was terminated.
--
-- 'connectionEstablishedTime', 'clientVpnConnection_connectionEstablishedTime' - The date and time the client connection was established.
--
-- 'connectionId', 'clientVpnConnection_connectionId' - The ID of the client connection.
--
-- 'egressBytes', 'clientVpnConnection_egressBytes' - The number of bytes received by the client.
--
-- 'egressPackets', 'clientVpnConnection_egressPackets' - The number of packets received by the client.
--
-- 'ingressBytes', 'clientVpnConnection_ingressBytes' - The number of bytes sent by the client.
--
-- 'ingressPackets', 'clientVpnConnection_ingressPackets' - The number of packets sent by the client.
--
-- 'postureComplianceStatuses', 'clientVpnConnection_postureComplianceStatuses' - The statuses returned by the client connect handler for posture
-- compliance, if applicable.
--
-- 'status', 'clientVpnConnection_status' - The current state of the client connection.
--
-- 'timestamp', 'clientVpnConnection_timestamp' - The current date and time.
--
-- 'username', 'clientVpnConnection_username' - The username of the client who established the client connection. This
-- information is only provided if Active Directory client authentication
-- is used.
newClientVpnConnection ::
ClientVpnConnection
newClientVpnConnection =
ClientVpnConnection'
{ clientIp = Prelude.Nothing,
clientVpnEndpointId = Prelude.Nothing,
commonName = Prelude.Nothing,
connectionEndTime = Prelude.Nothing,
connectionEstablishedTime = Prelude.Nothing,
connectionId = Prelude.Nothing,
egressBytes = Prelude.Nothing,
egressPackets = Prelude.Nothing,
ingressBytes = Prelude.Nothing,
ingressPackets = Prelude.Nothing,
postureComplianceStatuses = Prelude.Nothing,
status = Prelude.Nothing,
timestamp = Prelude.Nothing,
username = Prelude.Nothing
}
-- | The IP address of the client.
clientVpnConnection_clientIp :: Lens.Lens' ClientVpnConnection (Prelude.Maybe Prelude.Text)
clientVpnConnection_clientIp = Lens.lens (\ClientVpnConnection' {clientIp} -> clientIp) (\s@ClientVpnConnection' {} a -> s {clientIp = a} :: ClientVpnConnection)
-- | The ID of the Client VPN endpoint to which the client is connected.
clientVpnConnection_clientVpnEndpointId :: Lens.Lens' ClientVpnConnection (Prelude.Maybe Prelude.Text)
clientVpnConnection_clientVpnEndpointId = Lens.lens (\ClientVpnConnection' {clientVpnEndpointId} -> clientVpnEndpointId) (\s@ClientVpnConnection' {} a -> s {clientVpnEndpointId = a} :: ClientVpnConnection)
-- | The common name associated with the client. This is either the name of
-- the client certificate, or the Active Directory user name.
clientVpnConnection_commonName :: Lens.Lens' ClientVpnConnection (Prelude.Maybe Prelude.Text)
clientVpnConnection_commonName = Lens.lens (\ClientVpnConnection' {commonName} -> commonName) (\s@ClientVpnConnection' {} a -> s {commonName = a} :: ClientVpnConnection)
-- | The date and time the client connection was terminated.
clientVpnConnection_connectionEndTime :: Lens.Lens' ClientVpnConnection (Prelude.Maybe Prelude.Text)
clientVpnConnection_connectionEndTime = Lens.lens (\ClientVpnConnection' {connectionEndTime} -> connectionEndTime) (\s@ClientVpnConnection' {} a -> s {connectionEndTime = a} :: ClientVpnConnection)
-- | The date and time the client connection was established.
clientVpnConnection_connectionEstablishedTime :: Lens.Lens' ClientVpnConnection (Prelude.Maybe Prelude.Text)
clientVpnConnection_connectionEstablishedTime = Lens.lens (\ClientVpnConnection' {connectionEstablishedTime} -> connectionEstablishedTime) (\s@ClientVpnConnection' {} a -> s {connectionEstablishedTime = a} :: ClientVpnConnection)
-- | The ID of the client connection.
clientVpnConnection_connectionId :: Lens.Lens' ClientVpnConnection (Prelude.Maybe Prelude.Text)
clientVpnConnection_connectionId = Lens.lens (\ClientVpnConnection' {connectionId} -> connectionId) (\s@ClientVpnConnection' {} a -> s {connectionId = a} :: ClientVpnConnection)
-- | The number of bytes received by the client.
clientVpnConnection_egressBytes :: Lens.Lens' ClientVpnConnection (Prelude.Maybe Prelude.Text)
clientVpnConnection_egressBytes = Lens.lens (\ClientVpnConnection' {egressBytes} -> egressBytes) (\s@ClientVpnConnection' {} a -> s {egressBytes = a} :: ClientVpnConnection)
-- | The number of packets received by the client.
clientVpnConnection_egressPackets :: Lens.Lens' ClientVpnConnection (Prelude.Maybe Prelude.Text)
clientVpnConnection_egressPackets = Lens.lens (\ClientVpnConnection' {egressPackets} -> egressPackets) (\s@ClientVpnConnection' {} a -> s {egressPackets = a} :: ClientVpnConnection)
-- | The number of bytes sent by the client.
clientVpnConnection_ingressBytes :: Lens.Lens' ClientVpnConnection (Prelude.Maybe Prelude.Text)
clientVpnConnection_ingressBytes = Lens.lens (\ClientVpnConnection' {ingressBytes} -> ingressBytes) (\s@ClientVpnConnection' {} a -> s {ingressBytes = a} :: ClientVpnConnection)
-- | The number of packets sent by the client.
clientVpnConnection_ingressPackets :: Lens.Lens' ClientVpnConnection (Prelude.Maybe Prelude.Text)
clientVpnConnection_ingressPackets = Lens.lens (\ClientVpnConnection' {ingressPackets} -> ingressPackets) (\s@ClientVpnConnection' {} a -> s {ingressPackets = a} :: ClientVpnConnection)
-- | The statuses returned by the client connect handler for posture
-- compliance, if applicable.
clientVpnConnection_postureComplianceStatuses :: Lens.Lens' ClientVpnConnection (Prelude.Maybe [Prelude.Text])
clientVpnConnection_postureComplianceStatuses = Lens.lens (\ClientVpnConnection' {postureComplianceStatuses} -> postureComplianceStatuses) (\s@ClientVpnConnection' {} a -> s {postureComplianceStatuses = a} :: ClientVpnConnection) Prelude.. Lens.mapping Lens.coerced
-- | The current state of the client connection.
clientVpnConnection_status :: Lens.Lens' ClientVpnConnection (Prelude.Maybe ClientVpnConnectionStatus)
clientVpnConnection_status = Lens.lens (\ClientVpnConnection' {status} -> status) (\s@ClientVpnConnection' {} a -> s {status = a} :: ClientVpnConnection)
-- | The current date and time.
clientVpnConnection_timestamp :: Lens.Lens' ClientVpnConnection (Prelude.Maybe Prelude.Text)
clientVpnConnection_timestamp = Lens.lens (\ClientVpnConnection' {timestamp} -> timestamp) (\s@ClientVpnConnection' {} a -> s {timestamp = a} :: ClientVpnConnection)
-- | The username of the client who established the client connection. This
-- information is only provided if Active Directory client authentication
-- is used.
clientVpnConnection_username :: Lens.Lens' ClientVpnConnection (Prelude.Maybe Prelude.Text)
clientVpnConnection_username = Lens.lens (\ClientVpnConnection' {username} -> username) (\s@ClientVpnConnection' {} a -> s {username = a} :: ClientVpnConnection)
instance Data.FromXML ClientVpnConnection where
parseXML x =
ClientVpnConnection'
Prelude.<$> (x Data..@? "clientIp")
Prelude.<*> (x Data..@? "clientVpnEndpointId")
Prelude.<*> (x Data..@? "commonName")
Prelude.<*> (x Data..@? "connectionEndTime")
Prelude.<*> (x Data..@? "connectionEstablishedTime")
Prelude.<*> (x Data..@? "connectionId")
Prelude.<*> (x Data..@? "egressBytes")
Prelude.<*> (x Data..@? "egressPackets")
Prelude.<*> (x Data..@? "ingressBytes")
Prelude.<*> (x Data..@? "ingressPackets")
Prelude.<*> ( x
Data..@? "postureComplianceStatusSet"
Core..!@ Prelude.mempty
Prelude.>>= Core.may (Data.parseXMLList "item")
)
Prelude.<*> (x Data..@? "status")
Prelude.<*> (x Data..@? "timestamp")
Prelude.<*> (x Data..@? "username")
instance Prelude.Hashable ClientVpnConnection where
hashWithSalt _salt ClientVpnConnection' {..} =
_salt
`Prelude.hashWithSalt` clientIp
`Prelude.hashWithSalt` clientVpnEndpointId
`Prelude.hashWithSalt` commonName
`Prelude.hashWithSalt` connectionEndTime
`Prelude.hashWithSalt` connectionEstablishedTime
`Prelude.hashWithSalt` connectionId
`Prelude.hashWithSalt` egressBytes
`Prelude.hashWithSalt` egressPackets
`Prelude.hashWithSalt` ingressBytes
`Prelude.hashWithSalt` ingressPackets
`Prelude.hashWithSalt` postureComplianceStatuses
`Prelude.hashWithSalt` status
`Prelude.hashWithSalt` timestamp
`Prelude.hashWithSalt` username
instance Prelude.NFData ClientVpnConnection where
rnf ClientVpnConnection' {..} =
Prelude.rnf clientIp
`Prelude.seq` Prelude.rnf clientVpnEndpointId
`Prelude.seq` Prelude.rnf commonName
`Prelude.seq` Prelude.rnf connectionEndTime
`Prelude.seq` Prelude.rnf connectionEstablishedTime
`Prelude.seq` Prelude.rnf connectionId
`Prelude.seq` Prelude.rnf egressBytes
`Prelude.seq` Prelude.rnf egressPackets
`Prelude.seq` Prelude.rnf ingressBytes
`Prelude.seq` Prelude.rnf ingressPackets
`Prelude.seq` Prelude.rnf postureComplianceStatuses
`Prelude.seq` Prelude.rnf status
`Prelude.seq` Prelude.rnf timestamp
`Prelude.seq` Prelude.rnf username