{-# 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.Connect.Types.Attribute -- 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.Connect.Types.Attribute where import Amazonka.Connect.Types.InstanceAttributeType 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 -- | A toggle for an individual feature at the instance level. -- -- /See:/ 'newAttribute' smart constructor. data Attribute = Attribute' { -- | The type of attribute. attributeType :: Prelude.Maybe InstanceAttributeType, -- | The value of the attribute. value :: Prelude.Maybe Prelude.Text } deriving (Prelude.Eq, Prelude.Read, Prelude.Show, Prelude.Generic) -- | -- Create a value of 'Attribute' 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: -- -- 'attributeType', 'attribute_attributeType' - The type of attribute. -- -- 'value', 'attribute_value' - The value of the attribute. newAttribute :: Attribute newAttribute = Attribute' { attributeType = Prelude.Nothing, value = Prelude.Nothing } -- | The type of attribute. attribute_attributeType :: Lens.Lens' Attribute (Prelude.Maybe InstanceAttributeType) attribute_attributeType = Lens.lens (\Attribute' {attributeType} -> attributeType) (\s@Attribute' {} a -> s {attributeType = a} :: Attribute) -- | The value of the attribute. attribute_value :: Lens.Lens' Attribute (Prelude.Maybe Prelude.Text) attribute_value = Lens.lens (\Attribute' {value} -> value) (\s@Attribute' {} a -> s {value = a} :: Attribute) instance Data.FromJSON Attribute where parseJSON = Data.withObject "Attribute" ( \x -> Attribute' Prelude.<$> (x Data..:? "AttributeType") Prelude.<*> (x Data..:? "Value") ) instance Prelude.Hashable Attribute where hashWithSalt _salt Attribute' {..} = _salt `Prelude.hashWithSalt` attributeType `Prelude.hashWithSalt` value instance Prelude.NFData Attribute where rnf Attribute' {..} = Prelude.rnf attributeType `Prelude.seq` Prelude.rnf value