{-# 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.CodeDeploy.Types.TrafficRoute -- 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.CodeDeploy.Types.TrafficRoute 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 a listener. The listener contains the path used to -- route traffic that is received from the load balancer to a target group. -- -- /See:/ 'newTrafficRoute' smart constructor. data TrafficRoute = TrafficRoute' { -- | The Amazon Resource Name (ARN) of one listener. The listener identifies -- the route between a target group and a load balancer. This is an array -- of strings with a maximum size of one. listenerArns :: Prelude.Maybe [Prelude.Text] } deriving (Prelude.Eq, Prelude.Read, Prelude.Show, Prelude.Generic) -- | -- Create a value of 'TrafficRoute' 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: -- -- 'listenerArns', 'trafficRoute_listenerArns' - The Amazon Resource Name (ARN) of one listener. The listener identifies -- the route between a target group and a load balancer. This is an array -- of strings with a maximum size of one. newTrafficRoute :: TrafficRoute newTrafficRoute = TrafficRoute' {listenerArns = Prelude.Nothing} -- | The Amazon Resource Name (ARN) of one listener. The listener identifies -- the route between a target group and a load balancer. This is an array -- of strings with a maximum size of one. trafficRoute_listenerArns :: Lens.Lens' TrafficRoute (Prelude.Maybe [Prelude.Text]) trafficRoute_listenerArns = Lens.lens (\TrafficRoute' {listenerArns} -> listenerArns) (\s@TrafficRoute' {} a -> s {listenerArns = a} :: TrafficRoute) Prelude.. Lens.mapping Lens.coerced instance Data.FromJSON TrafficRoute where parseJSON = Data.withObject "TrafficRoute" ( \x -> TrafficRoute' Prelude.<$> (x Data..:? "listenerArns" Data..!= Prelude.mempty) ) instance Prelude.Hashable TrafficRoute where hashWithSalt _salt TrafficRoute' {..} = _salt `Prelude.hashWithSalt` listenerArns instance Prelude.NFData TrafficRoute where rnf TrafficRoute' {..} = Prelude.rnf listenerArns instance Data.ToJSON TrafficRoute where toJSON TrafficRoute' {..} = Data.object ( Prelude.catMaybes [("listenerArns" Data..=) Prelude.<$> listenerArns] )