{-# 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.IoT.Types.SecurityProfileTarget -- 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.IoT.Types.SecurityProfileTarget 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 -- | A target to which an alert is sent when a security profile behavior is -- violated. -- -- /See:/ 'newSecurityProfileTarget' smart constructor. data SecurityProfileTarget = SecurityProfileTarget' { -- | The ARN of the security profile. arn :: Prelude.Text } deriving (Prelude.Eq, Prelude.Read, Prelude.Show, Prelude.Generic) -- | -- Create a value of 'SecurityProfileTarget' 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: -- -- 'arn', 'securityProfileTarget_arn' - The ARN of the security profile. newSecurityProfileTarget :: -- | 'arn' Prelude.Text -> SecurityProfileTarget newSecurityProfileTarget pArn_ = SecurityProfileTarget' {arn = pArn_} -- | The ARN of the security profile. securityProfileTarget_arn :: Lens.Lens' SecurityProfileTarget Prelude.Text securityProfileTarget_arn = Lens.lens (\SecurityProfileTarget' {arn} -> arn) (\s@SecurityProfileTarget' {} a -> s {arn = a} :: SecurityProfileTarget) instance Data.FromJSON SecurityProfileTarget where parseJSON = Data.withObject "SecurityProfileTarget" ( \x -> SecurityProfileTarget' Prelude.<$> (x Data..: "arn") ) instance Prelude.Hashable SecurityProfileTarget where hashWithSalt _salt SecurityProfileTarget' {..} = _salt `Prelude.hashWithSalt` arn instance Prelude.NFData SecurityProfileTarget where rnf SecurityProfileTarget' {..} = Prelude.rnf arn