{-# 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.AlexaBusiness.Types.GatewaySummary -- 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.AlexaBusiness.Types.GatewaySummary where import qualified Amazonka.Core as Core import qualified Amazonka.Core.Lens.Internal as Lens import qualified Amazonka.Data as Data import qualified Amazonka.Prelude as Prelude -- | The summary of a gateway. -- -- /See:/ 'newGatewaySummary' smart constructor. data GatewaySummary = GatewaySummary' { -- | The ARN of the gateway. arn :: Prelude.Maybe Prelude.Text, -- | The description of the gateway. description :: Prelude.Maybe Prelude.Text, -- | The ARN of the gateway group that the gateway is associated to. gatewayGroupArn :: Prelude.Maybe Prelude.Text, -- | The name of the gateway. name :: Prelude.Maybe Prelude.Text, -- | The software version of the gateway. The gateway automatically updates -- its software version during normal operation. softwareVersion :: Prelude.Maybe Prelude.Text } deriving (Prelude.Eq, Prelude.Read, Prelude.Show, Prelude.Generic) -- | -- Create a value of 'GatewaySummary' 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: -- -- 'arn', 'gatewaySummary_arn' - The ARN of the gateway. -- -- 'description', 'gatewaySummary_description' - The description of the gateway. -- -- 'gatewayGroupArn', 'gatewaySummary_gatewayGroupArn' - The ARN of the gateway group that the gateway is associated to. -- -- 'name', 'gatewaySummary_name' - The name of the gateway. -- -- 'softwareVersion', 'gatewaySummary_softwareVersion' - The software version of the gateway. The gateway automatically updates -- its software version during normal operation. newGatewaySummary :: GatewaySummary newGatewaySummary = GatewaySummary' { arn = Prelude.Nothing, description = Prelude.Nothing, gatewayGroupArn = Prelude.Nothing, name = Prelude.Nothing, softwareVersion = Prelude.Nothing } -- | The ARN of the gateway. gatewaySummary_arn :: Lens.Lens' GatewaySummary (Prelude.Maybe Prelude.Text) gatewaySummary_arn = Lens.lens (\GatewaySummary' {arn} -> arn) (\s@GatewaySummary' {} a -> s {arn = a} :: GatewaySummary) -- | The description of the gateway. gatewaySummary_description :: Lens.Lens' GatewaySummary (Prelude.Maybe Prelude.Text) gatewaySummary_description = Lens.lens (\GatewaySummary' {description} -> description) (\s@GatewaySummary' {} a -> s {description = a} :: GatewaySummary) -- | The ARN of the gateway group that the gateway is associated to. gatewaySummary_gatewayGroupArn :: Lens.Lens' GatewaySummary (Prelude.Maybe Prelude.Text) gatewaySummary_gatewayGroupArn = Lens.lens (\GatewaySummary' {gatewayGroupArn} -> gatewayGroupArn) (\s@GatewaySummary' {} a -> s {gatewayGroupArn = a} :: GatewaySummary) -- | The name of the gateway. gatewaySummary_name :: Lens.Lens' GatewaySummary (Prelude.Maybe Prelude.Text) gatewaySummary_name = Lens.lens (\GatewaySummary' {name} -> name) (\s@GatewaySummary' {} a -> s {name = a} :: GatewaySummary) -- | The software version of the gateway. The gateway automatically updates -- its software version during normal operation. gatewaySummary_softwareVersion :: Lens.Lens' GatewaySummary (Prelude.Maybe Prelude.Text) gatewaySummary_softwareVersion = Lens.lens (\GatewaySummary' {softwareVersion} -> softwareVersion) (\s@GatewaySummary' {} a -> s {softwareVersion = a} :: GatewaySummary) instance Data.FromJSON GatewaySummary where parseJSON = Data.withObject "GatewaySummary" ( \x -> GatewaySummary' Prelude.<$> (x Data..:? "Arn") Prelude.<*> (x Data..:? "Description") Prelude.<*> (x Data..:? "GatewayGroupArn") Prelude.<*> (x Data..:? "Name") Prelude.<*> (x Data..:? "SoftwareVersion") ) instance Prelude.Hashable GatewaySummary where hashWithSalt _salt GatewaySummary' {..} = _salt `Prelude.hashWithSalt` arn `Prelude.hashWithSalt` description `Prelude.hashWithSalt` gatewayGroupArn `Prelude.hashWithSalt` name `Prelude.hashWithSalt` softwareVersion instance Prelude.NFData GatewaySummary where rnf GatewaySummary' {..} = Prelude.rnf arn `Prelude.seq` Prelude.rnf description `Prelude.seq` Prelude.rnf gatewayGroupArn `Prelude.seq` Prelude.rnf name `Prelude.seq` Prelude.rnf softwareVersion