{-# 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.ECR.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.ECR.Types.Attribute 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 -- | This data type is used in the ImageScanFinding data type. -- -- /See:/ 'newAttribute' smart constructor. data Attribute = Attribute' { -- | The value assigned to the attribute key. value :: Prelude.Maybe Prelude.Text, -- | The attribute key. key :: 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: -- -- 'value', 'attribute_value' - The value assigned to the attribute key. -- -- 'key', 'attribute_key' - The attribute key. newAttribute :: -- | 'key' Prelude.Text -> Attribute newAttribute pKey_ = Attribute' {value = Prelude.Nothing, key = pKey_} -- | The value assigned to the attribute key. attribute_value :: Lens.Lens' Attribute (Prelude.Maybe Prelude.Text) attribute_value = Lens.lens (\Attribute' {value} -> value) (\s@Attribute' {} a -> s {value = a} :: Attribute) -- | The attribute key. attribute_key :: Lens.Lens' Attribute Prelude.Text attribute_key = Lens.lens (\Attribute' {key} -> key) (\s@Attribute' {} a -> s {key = a} :: Attribute) instance Data.FromJSON Attribute where parseJSON = Data.withObject "Attribute" ( \x -> Attribute' Prelude.<$> (x Data..:? "value") Prelude.<*> (x Data..: "key") ) instance Prelude.Hashable Attribute where hashWithSalt _salt Attribute' {..} = _salt `Prelude.hashWithSalt` value `Prelude.hashWithSalt` key instance Prelude.NFData Attribute where rnf Attribute' {..} = Prelude.rnf value `Prelude.seq` Prelude.rnf key