{-# 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.SecurityHub.Types.LoadBalancerState -- 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.SecurityHub.Types.LoadBalancerState 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 -- | Information about the state of the load balancer. -- -- /See:/ 'newLoadBalancerState' smart constructor. data LoadBalancerState = LoadBalancerState' { -- | The state code. The initial state of the load balancer is provisioning. -- -- After the load balancer is fully set up and ready to route traffic, its -- state is active. -- -- If the load balancer could not be set up, its state is failed. code :: Prelude.Maybe Prelude.Text, -- | A description of the state. reason :: Prelude.Maybe Prelude.Text } deriving (Prelude.Eq, Prelude.Read, Prelude.Show, Prelude.Generic) -- | -- Create a value of 'LoadBalancerState' 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: -- -- 'code', 'loadBalancerState_code' - The state code. The initial state of the load balancer is provisioning. -- -- After the load balancer is fully set up and ready to route traffic, its -- state is active. -- -- If the load balancer could not be set up, its state is failed. -- -- 'reason', 'loadBalancerState_reason' - A description of the state. newLoadBalancerState :: LoadBalancerState newLoadBalancerState = LoadBalancerState' { code = Prelude.Nothing, reason = Prelude.Nothing } -- | The state code. The initial state of the load balancer is provisioning. -- -- After the load balancer is fully set up and ready to route traffic, its -- state is active. -- -- If the load balancer could not be set up, its state is failed. loadBalancerState_code :: Lens.Lens' LoadBalancerState (Prelude.Maybe Prelude.Text) loadBalancerState_code = Lens.lens (\LoadBalancerState' {code} -> code) (\s@LoadBalancerState' {} a -> s {code = a} :: LoadBalancerState) -- | A description of the state. loadBalancerState_reason :: Lens.Lens' LoadBalancerState (Prelude.Maybe Prelude.Text) loadBalancerState_reason = Lens.lens (\LoadBalancerState' {reason} -> reason) (\s@LoadBalancerState' {} a -> s {reason = a} :: LoadBalancerState) instance Data.FromJSON LoadBalancerState where parseJSON = Data.withObject "LoadBalancerState" ( \x -> LoadBalancerState' Prelude.<$> (x Data..:? "Code") Prelude.<*> (x Data..:? "Reason") ) instance Prelude.Hashable LoadBalancerState where hashWithSalt _salt LoadBalancerState' {..} = _salt `Prelude.hashWithSalt` code `Prelude.hashWithSalt` reason instance Prelude.NFData LoadBalancerState where rnf LoadBalancerState' {..} = Prelude.rnf code `Prelude.seq` Prelude.rnf reason instance Data.ToJSON LoadBalancerState where toJSON LoadBalancerState' {..} = Data.object ( Prelude.catMaybes [ ("Code" Data..=) Prelude.<$> code, ("Reason" Data..=) Prelude.<$> reason ] )