amazonka-alexa-business-2.0: gen/Amazonka/AlexaBusiness/Types/SipAddress.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.AlexaBusiness.Types.SipAddress
-- 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.SipAddress where
import Amazonka.AlexaBusiness.Types.SipType
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 SIP address for the contact containing the URI and SIP address type.
--
-- /See:/ 'newSipAddress' smart constructor.
data SipAddress = SipAddress'
{ -- | The URI for the SIP address.
uri :: Data.Sensitive Prelude.Text,
-- | The type of the SIP address.
type' :: Data.Sensitive SipType
}
deriving (Prelude.Eq, Prelude.Show, Prelude.Generic)
-- |
-- Create a value of 'SipAddress' 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:
--
-- 'uri', 'sipAddress_uri' - The URI for the SIP address.
--
-- 'type'', 'sipAddress_type' - The type of the SIP address.
newSipAddress ::
-- | 'uri'
Prelude.Text ->
-- | 'type''
SipType ->
SipAddress
newSipAddress pUri_ pType_ =
SipAddress'
{ uri = Data._Sensitive Lens.# pUri_,
type' = Data._Sensitive Lens.# pType_
}
-- | The URI for the SIP address.
sipAddress_uri :: Lens.Lens' SipAddress Prelude.Text
sipAddress_uri = Lens.lens (\SipAddress' {uri} -> uri) (\s@SipAddress' {} a -> s {uri = a} :: SipAddress) Prelude.. Data._Sensitive
-- | The type of the SIP address.
sipAddress_type :: Lens.Lens' SipAddress SipType
sipAddress_type = Lens.lens (\SipAddress' {type'} -> type') (\s@SipAddress' {} a -> s {type' = a} :: SipAddress) Prelude.. Data._Sensitive
instance Data.FromJSON SipAddress where
parseJSON =
Data.withObject
"SipAddress"
( \x ->
SipAddress'
Prelude.<$> (x Data..: "Uri")
Prelude.<*> (x Data..: "Type")
)
instance Prelude.Hashable SipAddress where
hashWithSalt _salt SipAddress' {..} =
_salt
`Prelude.hashWithSalt` uri
`Prelude.hashWithSalt` type'
instance Prelude.NFData SipAddress where
rnf SipAddress' {..} =
Prelude.rnf uri `Prelude.seq` Prelude.rnf type'
instance Data.ToJSON SipAddress where
toJSON SipAddress' {..} =
Data.object
( Prelude.catMaybes
[ Prelude.Just ("Uri" Data..= uri),
Prelude.Just ("Type" Data..= type')
]
)