{-# 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.SSM.Types.OpsEntity -- 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.SSM.Types.OpsEntity 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 import Amazonka.SSM.Types.OpsEntityItem -- | The result of the query. -- -- /See:/ 'newOpsEntity' smart constructor. data OpsEntity = OpsEntity' { -- | The data returned by the query. data' :: Prelude.Maybe (Prelude.HashMap Prelude.Text OpsEntityItem), -- | The query ID. id :: Prelude.Maybe Prelude.Text } deriving (Prelude.Eq, Prelude.Read, Prelude.Show, Prelude.Generic) -- | -- Create a value of 'OpsEntity' 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: -- -- 'data'', 'opsEntity_data' - The data returned by the query. -- -- 'id', 'opsEntity_id' - The query ID. newOpsEntity :: OpsEntity newOpsEntity = OpsEntity' { data' = Prelude.Nothing, id = Prelude.Nothing } -- | The data returned by the query. opsEntity_data :: Lens.Lens' OpsEntity (Prelude.Maybe (Prelude.HashMap Prelude.Text OpsEntityItem)) opsEntity_data = Lens.lens (\OpsEntity' {data'} -> data') (\s@OpsEntity' {} a -> s {data' = a} :: OpsEntity) Prelude.. Lens.mapping Lens.coerced -- | The query ID. opsEntity_id :: Lens.Lens' OpsEntity (Prelude.Maybe Prelude.Text) opsEntity_id = Lens.lens (\OpsEntity' {id} -> id) (\s@OpsEntity' {} a -> s {id = a} :: OpsEntity) instance Data.FromJSON OpsEntity where parseJSON = Data.withObject "OpsEntity" ( \x -> OpsEntity' Prelude.<$> (x Data..:? "Data" Data..!= Prelude.mempty) Prelude.<*> (x Data..:? "Id") ) instance Prelude.Hashable OpsEntity where hashWithSalt _salt OpsEntity' {..} = _salt `Prelude.hashWithSalt` data' `Prelude.hashWithSalt` id instance Prelude.NFData OpsEntity where rnf OpsEntity' {..} = Prelude.rnf data' `Prelude.seq` Prelude.rnf id