{-# 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.Chime.Types.BusinessCallingSettings -- 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.Chime.Types.BusinessCallingSettings 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 Amazon Chime Business Calling settings for the administrator\'s AWS -- account. Includes any Amazon S3 buckets designated for storing call -- detail records. -- -- /See:/ 'newBusinessCallingSettings' smart constructor. data BusinessCallingSettings = BusinessCallingSettings' { -- | The Amazon S3 bucket designated for call detail record storage. cdrBucket :: Prelude.Maybe Prelude.Text } deriving (Prelude.Eq, Prelude.Read, Prelude.Show, Prelude.Generic) -- | -- Create a value of 'BusinessCallingSettings' 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: -- -- 'cdrBucket', 'businessCallingSettings_cdrBucket' - The Amazon S3 bucket designated for call detail record storage. newBusinessCallingSettings :: BusinessCallingSettings newBusinessCallingSettings = BusinessCallingSettings' { cdrBucket = Prelude.Nothing } -- | The Amazon S3 bucket designated for call detail record storage. businessCallingSettings_cdrBucket :: Lens.Lens' BusinessCallingSettings (Prelude.Maybe Prelude.Text) businessCallingSettings_cdrBucket = Lens.lens (\BusinessCallingSettings' {cdrBucket} -> cdrBucket) (\s@BusinessCallingSettings' {} a -> s {cdrBucket = a} :: BusinessCallingSettings) instance Data.FromJSON BusinessCallingSettings where parseJSON = Data.withObject "BusinessCallingSettings" ( \x -> BusinessCallingSettings' Prelude.<$> (x Data..:? "CdrBucket") ) instance Prelude.Hashable BusinessCallingSettings where hashWithSalt _salt BusinessCallingSettings' {..} = _salt `Prelude.hashWithSalt` cdrBucket instance Prelude.NFData BusinessCallingSettings where rnf BusinessCallingSettings' {..} = Prelude.rnf cdrBucket instance Data.ToJSON BusinessCallingSettings where toJSON BusinessCallingSettings' {..} = Data.object ( Prelude.catMaybes [("CdrBucket" Data..=) Prelude.<$> cdrBucket] )