amazonka-codepipeline-2.0: gen/Amazonka/CodePipeline/Types/ActionTypePermissions.hs
{-# 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.CodePipeline.Types.ActionTypePermissions
-- 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.CodePipeline.Types.ActionTypePermissions 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
-- | Details identifying the users with permissions to use the action type.
--
-- /See:/ 'newActionTypePermissions' smart constructor.
data ActionTypePermissions = ActionTypePermissions'
{ -- | A list of AWS account IDs with access to use the action type in their
-- pipelines.
allowedAccounts :: Prelude.NonEmpty Prelude.Text
}
deriving (Prelude.Eq, Prelude.Read, Prelude.Show, Prelude.Generic)
-- |
-- Create a value of 'ActionTypePermissions' with all optional fields omitted.
--
-- Use <https://hackage.haskell.org/package/generic-lens generic-lens> or <https://hackage.haskell.org/package/optics optics> to modify other optional fields.
--
-- The following record fields are available, with the corresponding lenses provided
-- for backwards compatibility:
--
-- 'allowedAccounts', 'actionTypePermissions_allowedAccounts' - A list of AWS account IDs with access to use the action type in their
-- pipelines.
newActionTypePermissions ::
-- | 'allowedAccounts'
Prelude.NonEmpty Prelude.Text ->
ActionTypePermissions
newActionTypePermissions pAllowedAccounts_ =
ActionTypePermissions'
{ allowedAccounts =
Lens.coerced Lens.# pAllowedAccounts_
}
-- | A list of AWS account IDs with access to use the action type in their
-- pipelines.
actionTypePermissions_allowedAccounts :: Lens.Lens' ActionTypePermissions (Prelude.NonEmpty Prelude.Text)
actionTypePermissions_allowedAccounts = Lens.lens (\ActionTypePermissions' {allowedAccounts} -> allowedAccounts) (\s@ActionTypePermissions' {} a -> s {allowedAccounts = a} :: ActionTypePermissions) Prelude.. Lens.coerced
instance Data.FromJSON ActionTypePermissions where
parseJSON =
Data.withObject
"ActionTypePermissions"
( \x ->
ActionTypePermissions'
Prelude.<$> (x Data..: "allowedAccounts")
)
instance Prelude.Hashable ActionTypePermissions where
hashWithSalt _salt ActionTypePermissions' {..} =
_salt `Prelude.hashWithSalt` allowedAccounts
instance Prelude.NFData ActionTypePermissions where
rnf ActionTypePermissions' {..} =
Prelude.rnf allowedAccounts
instance Data.ToJSON ActionTypePermissions where
toJSON ActionTypePermissions' {..} =
Data.object
( Prelude.catMaybes
[ Prelude.Just
("allowedAccounts" Data..= allowedAccounts)
]
)