{-# 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.DAX.Types.Endpoint -- 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.DAX.Types.Endpoint 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 -- | Represents the information required for client programs to connect to -- the endpoint for a DAX cluster. -- -- /See:/ 'newEndpoint' smart constructor. data Endpoint = Endpoint' { -- | The DNS hostname of the endpoint. address :: Prelude.Maybe Prelude.Text, -- | The port number that applications should use to connect to the endpoint. port :: Prelude.Maybe Prelude.Int, -- | The URL that applications should use to connect to the endpoint. The -- default ports are 8111 for the \"dax\" protocol and 9111 for the -- \"daxs\" protocol. url :: Prelude.Maybe Prelude.Text } deriving (Prelude.Eq, Prelude.Read, Prelude.Show, Prelude.Generic) -- | -- Create a value of 'Endpoint' 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: -- -- 'address', 'endpoint_address' - The DNS hostname of the endpoint. -- -- 'port', 'endpoint_port' - The port number that applications should use to connect to the endpoint. -- -- 'url', 'endpoint_url' - The URL that applications should use to connect to the endpoint. The -- default ports are 8111 for the \"dax\" protocol and 9111 for the -- \"daxs\" protocol. newEndpoint :: Endpoint newEndpoint = Endpoint' { address = Prelude.Nothing, port = Prelude.Nothing, url = Prelude.Nothing } -- | The DNS hostname of the endpoint. endpoint_address :: Lens.Lens' Endpoint (Prelude.Maybe Prelude.Text) endpoint_address = Lens.lens (\Endpoint' {address} -> address) (\s@Endpoint' {} a -> s {address = a} :: Endpoint) -- | The port number that applications should use to connect to the endpoint. endpoint_port :: Lens.Lens' Endpoint (Prelude.Maybe Prelude.Int) endpoint_port = Lens.lens (\Endpoint' {port} -> port) (\s@Endpoint' {} a -> s {port = a} :: Endpoint) -- | The URL that applications should use to connect to the endpoint. The -- default ports are 8111 for the \"dax\" protocol and 9111 for the -- \"daxs\" protocol. endpoint_url :: Lens.Lens' Endpoint (Prelude.Maybe Prelude.Text) endpoint_url = Lens.lens (\Endpoint' {url} -> url) (\s@Endpoint' {} a -> s {url = a} :: Endpoint) instance Data.FromJSON Endpoint where parseJSON = Data.withObject "Endpoint" ( \x -> Endpoint' Prelude.<$> (x Data..:? "Address") Prelude.<*> (x Data..:? "Port") Prelude.<*> (x Data..:? "URL") ) instance Prelude.Hashable Endpoint where hashWithSalt _salt Endpoint' {..} = _salt `Prelude.hashWithSalt` address `Prelude.hashWithSalt` port `Prelude.hashWithSalt` url instance Prelude.NFData Endpoint where rnf Endpoint' {..} = Prelude.rnf address `Prelude.seq` Prelude.rnf port `Prelude.seq` Prelude.rnf url