{-# 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.IoT.Types.Configuration -- 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.IoT.Types.Configuration 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 -- | Configuration. -- -- /See:/ 'newConfiguration' smart constructor. data Configuration = Configuration' { -- | True to enable the configuration. enabled :: Prelude.Maybe Prelude.Bool } deriving (Prelude.Eq, Prelude.Read, Prelude.Show, Prelude.Generic) -- | -- Create a value of 'Configuration' 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: -- -- 'enabled', 'configuration_enabled' - True to enable the configuration. newConfiguration :: Configuration newConfiguration = Configuration' {enabled = Prelude.Nothing} -- | True to enable the configuration. configuration_enabled :: Lens.Lens' Configuration (Prelude.Maybe Prelude.Bool) configuration_enabled = Lens.lens (\Configuration' {enabled} -> enabled) (\s@Configuration' {} a -> s {enabled = a} :: Configuration) instance Data.FromJSON Configuration where parseJSON = Data.withObject "Configuration" ( \x -> Configuration' Prelude.<$> (x Data..:? "Enabled") ) instance Prelude.Hashable Configuration where hashWithSalt _salt Configuration' {..} = _salt `Prelude.hashWithSalt` enabled instance Prelude.NFData Configuration where rnf Configuration' {..} = Prelude.rnf enabled instance Data.ToJSON Configuration where toJSON Configuration' {..} = Data.object ( Prelude.catMaybes [("Enabled" Data..=) Prelude.<$> enabled] )