{-# 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.EffectivePolicy -- 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.EffectivePolicy 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 -- | The policy that has the effect on the authorization results. -- -- /See:/ 'newEffectivePolicy' smart constructor. data EffectivePolicy = EffectivePolicy' { -- | The policy ARN. policyArn :: Prelude.Maybe Prelude.Text, -- | The IAM policy document. policyDocument :: 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 'EffectivePolicy' 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', 'effectivePolicy_policyArn' - The policy ARN. -- -- 'policyDocument', 'effectivePolicy_policyDocument' - The IAM policy document. -- -- 'policyName', 'effectivePolicy_policyName' - The policy name. newEffectivePolicy :: EffectivePolicy newEffectivePolicy = EffectivePolicy' { policyArn = Prelude.Nothing, policyDocument = Prelude.Nothing, policyName = Prelude.Nothing } -- | The policy ARN. effectivePolicy_policyArn :: Lens.Lens' EffectivePolicy (Prelude.Maybe Prelude.Text) effectivePolicy_policyArn = Lens.lens (\EffectivePolicy' {policyArn} -> policyArn) (\s@EffectivePolicy' {} a -> s {policyArn = a} :: EffectivePolicy) -- | The IAM policy document. effectivePolicy_policyDocument :: Lens.Lens' EffectivePolicy (Prelude.Maybe Prelude.Text) effectivePolicy_policyDocument = Lens.lens (\EffectivePolicy' {policyDocument} -> policyDocument) (\s@EffectivePolicy' {} a -> s {policyDocument = a} :: EffectivePolicy) -- | The policy name. effectivePolicy_policyName :: Lens.Lens' EffectivePolicy (Prelude.Maybe Prelude.Text) effectivePolicy_policyName = Lens.lens (\EffectivePolicy' {policyName} -> policyName) (\s@EffectivePolicy' {} a -> s {policyName = a} :: EffectivePolicy) instance Data.FromJSON EffectivePolicy where parseJSON = Data.withObject "EffectivePolicy" ( \x -> EffectivePolicy' Prelude.<$> (x Data..:? "policyArn") Prelude.<*> (x Data..:? "policyDocument") Prelude.<*> (x Data..:? "policyName") ) instance Prelude.Hashable EffectivePolicy where hashWithSalt _salt EffectivePolicy' {..} = _salt `Prelude.hashWithSalt` policyArn `Prelude.hashWithSalt` policyDocument `Prelude.hashWithSalt` policyName instance Prelude.NFData EffectivePolicy where rnf EffectivePolicy' {..} = Prelude.rnf policyArn `Prelude.seq` Prelude.rnf policyDocument `Prelude.seq` Prelude.rnf policyName