amazonka-ec2-2.0: gen/Amazonka/EC2/Types/VgwTelemetry.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.VgwTelemetry
-- 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.VgwTelemetry 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.TelemetryStatus
import qualified Amazonka.Prelude as Prelude
-- | Describes telemetry for a VPN tunnel.
--
-- /See:/ 'newVgwTelemetry' smart constructor.
data VgwTelemetry = VgwTelemetry'
{ -- | The number of accepted routes.
acceptedRouteCount :: Prelude.Maybe Prelude.Int,
-- | The Amazon Resource Name (ARN) of the VPN tunnel endpoint certificate.
certificateArn :: Prelude.Maybe Prelude.Text,
-- | The date and time of the last change in status.
lastStatusChange :: Prelude.Maybe Data.ISO8601,
-- | The Internet-routable IP address of the virtual private gateway\'s
-- outside interface.
outsideIpAddress :: Prelude.Maybe Prelude.Text,
-- | The status of the VPN tunnel.
status :: Prelude.Maybe TelemetryStatus,
-- | If an error occurs, a description of the error.
statusMessage :: Prelude.Maybe Prelude.Text
}
deriving (Prelude.Eq, Prelude.Read, Prelude.Show, Prelude.Generic)
-- |
-- Create a value of 'VgwTelemetry' 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:
--
-- 'acceptedRouteCount', 'vgwTelemetry_acceptedRouteCount' - The number of accepted routes.
--
-- 'certificateArn', 'vgwTelemetry_certificateArn' - The Amazon Resource Name (ARN) of the VPN tunnel endpoint certificate.
--
-- 'lastStatusChange', 'vgwTelemetry_lastStatusChange' - The date and time of the last change in status.
--
-- 'outsideIpAddress', 'vgwTelemetry_outsideIpAddress' - The Internet-routable IP address of the virtual private gateway\'s
-- outside interface.
--
-- 'status', 'vgwTelemetry_status' - The status of the VPN tunnel.
--
-- 'statusMessage', 'vgwTelemetry_statusMessage' - If an error occurs, a description of the error.
newVgwTelemetry ::
VgwTelemetry
newVgwTelemetry =
VgwTelemetry'
{ acceptedRouteCount = Prelude.Nothing,
certificateArn = Prelude.Nothing,
lastStatusChange = Prelude.Nothing,
outsideIpAddress = Prelude.Nothing,
status = Prelude.Nothing,
statusMessage = Prelude.Nothing
}
-- | The number of accepted routes.
vgwTelemetry_acceptedRouteCount :: Lens.Lens' VgwTelemetry (Prelude.Maybe Prelude.Int)
vgwTelemetry_acceptedRouteCount = Lens.lens (\VgwTelemetry' {acceptedRouteCount} -> acceptedRouteCount) (\s@VgwTelemetry' {} a -> s {acceptedRouteCount = a} :: VgwTelemetry)
-- | The Amazon Resource Name (ARN) of the VPN tunnel endpoint certificate.
vgwTelemetry_certificateArn :: Lens.Lens' VgwTelemetry (Prelude.Maybe Prelude.Text)
vgwTelemetry_certificateArn = Lens.lens (\VgwTelemetry' {certificateArn} -> certificateArn) (\s@VgwTelemetry' {} a -> s {certificateArn = a} :: VgwTelemetry)
-- | The date and time of the last change in status.
vgwTelemetry_lastStatusChange :: Lens.Lens' VgwTelemetry (Prelude.Maybe Prelude.UTCTime)
vgwTelemetry_lastStatusChange = Lens.lens (\VgwTelemetry' {lastStatusChange} -> lastStatusChange) (\s@VgwTelemetry' {} a -> s {lastStatusChange = a} :: VgwTelemetry) Prelude.. Lens.mapping Data._Time
-- | The Internet-routable IP address of the virtual private gateway\'s
-- outside interface.
vgwTelemetry_outsideIpAddress :: Lens.Lens' VgwTelemetry (Prelude.Maybe Prelude.Text)
vgwTelemetry_outsideIpAddress = Lens.lens (\VgwTelemetry' {outsideIpAddress} -> outsideIpAddress) (\s@VgwTelemetry' {} a -> s {outsideIpAddress = a} :: VgwTelemetry)
-- | The status of the VPN tunnel.
vgwTelemetry_status :: Lens.Lens' VgwTelemetry (Prelude.Maybe TelemetryStatus)
vgwTelemetry_status = Lens.lens (\VgwTelemetry' {status} -> status) (\s@VgwTelemetry' {} a -> s {status = a} :: VgwTelemetry)
-- | If an error occurs, a description of the error.
vgwTelemetry_statusMessage :: Lens.Lens' VgwTelemetry (Prelude.Maybe Prelude.Text)
vgwTelemetry_statusMessage = Lens.lens (\VgwTelemetry' {statusMessage} -> statusMessage) (\s@VgwTelemetry' {} a -> s {statusMessage = a} :: VgwTelemetry)
instance Data.FromXML VgwTelemetry where
parseXML x =
VgwTelemetry'
Prelude.<$> (x Data..@? "acceptedRouteCount")
Prelude.<*> (x Data..@? "certificateArn")
Prelude.<*> (x Data..@? "lastStatusChange")
Prelude.<*> (x Data..@? "outsideIpAddress")
Prelude.<*> (x Data..@? "status")
Prelude.<*> (x Data..@? "statusMessage")
instance Prelude.Hashable VgwTelemetry where
hashWithSalt _salt VgwTelemetry' {..} =
_salt
`Prelude.hashWithSalt` acceptedRouteCount
`Prelude.hashWithSalt` certificateArn
`Prelude.hashWithSalt` lastStatusChange
`Prelude.hashWithSalt` outsideIpAddress
`Prelude.hashWithSalt` status
`Prelude.hashWithSalt` statusMessage
instance Prelude.NFData VgwTelemetry where
rnf VgwTelemetry' {..} =
Prelude.rnf acceptedRouteCount
`Prelude.seq` Prelude.rnf certificateArn
`Prelude.seq` Prelude.rnf lastStatusChange
`Prelude.seq` Prelude.rnf outsideIpAddress
`Prelude.seq` Prelude.rnf status
`Prelude.seq` Prelude.rnf statusMessage