{-# 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.Policy -- 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.Policy 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 an IoT policy. -- -- /See:/ 'newPolicy' smart constructor. data Policy = Policy' { -- | The policy ARN. policyArn :: Prelude.Maybe Prelude.Text, -- | The policy name. policyName :: Prelude.Maybe Prelude.Text } deriving (Prelude.Eq, Prelude.Read, Prelude.Show, Prelude.Generic) -- | -- Create a value of 'Policy' 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: -- -- 'policyArn', 'policy_policyArn' - The policy ARN. -- -- 'policyName', 'policy_policyName' - The policy name. newPolicy :: Policy newPolicy = Policy' { policyArn = Prelude.Nothing, policyName = Prelude.Nothing } -- | The policy ARN. policy_policyArn :: Lens.Lens' Policy (Prelude.Maybe Prelude.Text) policy_policyArn = Lens.lens (\Policy' {policyArn} -> policyArn) (\s@Policy' {} a -> s {policyArn = a} :: Policy) -- | The policy name. policy_policyName :: Lens.Lens' Policy (Prelude.Maybe Prelude.Text) policy_policyName = Lens.lens (\Policy' {policyName} -> policyName) (\s@Policy' {} a -> s {policyName = a} :: Policy) instance Data.FromJSON Policy where parseJSON = Data.withObject "Policy" ( \x -> Policy' Prelude.<$> (x Data..:? "policyArn") Prelude.<*> (x Data..:? "policyName") ) instance Prelude.Hashable Policy where hashWithSalt _salt Policy' {..} = _salt `Prelude.hashWithSalt` policyArn `Prelude.hashWithSalt` policyName instance Prelude.NFData Policy where rnf Policy' {..} = Prelude.rnf policyArn `Prelude.seq` Prelude.rnf policyName