{-# 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.DynamoDB.Types.ItemResponse -- 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.DynamoDB.Types.ItemResponse where import qualified Amazonka.Core as Core import qualified Amazonka.Core.Lens.Internal as Lens import qualified Amazonka.Data as Data import Amazonka.DynamoDB.Types.AttributeValue import Amazonka.DynamoDB.Types.WriteRequest import qualified Amazonka.Prelude as Prelude -- | Details for the requested item. -- -- /See:/ 'newItemResponse' smart constructor. data ItemResponse = ItemResponse' { -- | Map of attribute data consisting of the data type and attribute value. item :: Prelude.Maybe (Prelude.HashMap Prelude.Text AttributeValue) } deriving (Prelude.Eq, Prelude.Read, Prelude.Show, Prelude.Generic) -- | -- Create a value of 'ItemResponse' 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: -- -- 'item', 'itemResponse_item' - Map of attribute data consisting of the data type and attribute value. newItemResponse :: ItemResponse newItemResponse = ItemResponse' {item = Prelude.Nothing} -- | Map of attribute data consisting of the data type and attribute value. itemResponse_item :: Lens.Lens' ItemResponse (Prelude.Maybe (Prelude.HashMap Prelude.Text AttributeValue)) itemResponse_item = Lens.lens (\ItemResponse' {item} -> item) (\s@ItemResponse' {} a -> s {item = a} :: ItemResponse) Prelude.. Lens.mapping Lens.coerced instance Data.FromJSON ItemResponse where parseJSON = Data.withObject "ItemResponse" ( \x -> ItemResponse' Prelude.<$> (x Data..:? "Item" Data..!= Prelude.mempty) ) instance Prelude.Hashable ItemResponse where hashWithSalt _salt ItemResponse' {..} = _salt `Prelude.hashWithSalt` item instance Prelude.NFData ItemResponse where rnf ItemResponse' {..} = Prelude.rnf item