{-# 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.FMS.Types.ActionTarget -- 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.FMS.Types.ActionTarget 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 -- | Describes a remediation action target. -- -- /See:/ 'newActionTarget' smart constructor. data ActionTarget = ActionTarget' { -- | A description of the remediation action target. description :: Prelude.Maybe Prelude.Text, -- | The ID of the remediation target. resourceId :: Prelude.Maybe Prelude.Text } deriving (Prelude.Eq, Prelude.Read, Prelude.Show, Prelude.Generic) -- | -- Create a value of 'ActionTarget' 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: -- -- 'description', 'actionTarget_description' - A description of the remediation action target. -- -- 'resourceId', 'actionTarget_resourceId' - The ID of the remediation target. newActionTarget :: ActionTarget newActionTarget = ActionTarget' { description = Prelude.Nothing, resourceId = Prelude.Nothing } -- | A description of the remediation action target. actionTarget_description :: Lens.Lens' ActionTarget (Prelude.Maybe Prelude.Text) actionTarget_description = Lens.lens (\ActionTarget' {description} -> description) (\s@ActionTarget' {} a -> s {description = a} :: ActionTarget) -- | The ID of the remediation target. actionTarget_resourceId :: Lens.Lens' ActionTarget (Prelude.Maybe Prelude.Text) actionTarget_resourceId = Lens.lens (\ActionTarget' {resourceId} -> resourceId) (\s@ActionTarget' {} a -> s {resourceId = a} :: ActionTarget) instance Data.FromJSON ActionTarget where parseJSON = Data.withObject "ActionTarget" ( \x -> ActionTarget' Prelude.<$> (x Data..:? "Description") Prelude.<*> (x Data..:? "ResourceId") ) instance Prelude.Hashable ActionTarget where hashWithSalt _salt ActionTarget' {..} = _salt `Prelude.hashWithSalt` description `Prelude.hashWithSalt` resourceId instance Prelude.NFData ActionTarget where rnf ActionTarget' {..} = Prelude.rnf description `Prelude.seq` Prelude.rnf resourceId