{-# 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.Signer.Types.Permission
-- Copyright   : (c) 2013-2021 Brendan Hay
-- License     : Mozilla Public License, v. 2.0.
-- Maintainer  : Brendan Hay <brendan.g.hay+amazonka@gmail.com>
-- Stability   : auto-generated
-- Portability : non-portable (GHC extensions)
module Amazonka.Signer.Types.Permission where

import qualified Amazonka.Core as Core
import qualified Amazonka.Lens as Lens
import qualified Amazonka.Prelude as Prelude

-- | A cross-account permission for a signing profile.
--
-- /See:/ 'newPermission' smart constructor.
data Permission = Permission'
  { -- | An AWS Signer action permitted as part of cross-account permissions.
    Permission -> Maybe Text
action :: Prelude.Maybe Prelude.Text,
    -- | The signing profile version that a permission applies to.
    Permission -> Maybe Text
profileVersion :: Prelude.Maybe Prelude.Text,
    -- | The AWS principal that has been granted a cross-account permission.
    Permission -> Maybe Text
principal :: Prelude.Maybe Prelude.Text,
    -- | A unique identifier for a cross-account permission statement.
    Permission -> Maybe Text
statementId :: Prelude.Maybe Prelude.Text
  }
  deriving (Permission -> Permission -> Bool
(Permission -> Permission -> Bool)
-> (Permission -> Permission -> Bool) -> Eq Permission
forall a. (a -> a -> Bool) -> (a -> a -> Bool) -> Eq a
/= :: Permission -> Permission -> Bool
$c/= :: Permission -> Permission -> Bool
== :: Permission -> Permission -> Bool
$c== :: Permission -> Permission -> Bool
Prelude.Eq, ReadPrec [Permission]
ReadPrec Permission
Int -> ReadS Permission
ReadS [Permission]
(Int -> ReadS Permission)
-> ReadS [Permission]
-> ReadPrec Permission
-> ReadPrec [Permission]
-> Read Permission
forall a.
(Int -> ReadS a)
-> ReadS [a] -> ReadPrec a -> ReadPrec [a] -> Read a
readListPrec :: ReadPrec [Permission]
$creadListPrec :: ReadPrec [Permission]
readPrec :: ReadPrec Permission
$creadPrec :: ReadPrec Permission
readList :: ReadS [Permission]
$creadList :: ReadS [Permission]
readsPrec :: Int -> ReadS Permission
$creadsPrec :: Int -> ReadS Permission
Prelude.Read, Int -> Permission -> ShowS
[Permission] -> ShowS
Permission -> String
(Int -> Permission -> ShowS)
-> (Permission -> String)
-> ([Permission] -> ShowS)
-> Show Permission
forall a.
(Int -> a -> ShowS) -> (a -> String) -> ([a] -> ShowS) -> Show a
showList :: [Permission] -> ShowS
$cshowList :: [Permission] -> ShowS
show :: Permission -> String
$cshow :: Permission -> String
showsPrec :: Int -> Permission -> ShowS
$cshowsPrec :: Int -> Permission -> ShowS
Prelude.Show, (forall x. Permission -> Rep Permission x)
-> (forall x. Rep Permission x -> Permission) -> Generic Permission
forall x. Rep Permission x -> Permission
forall x. Permission -> Rep Permission x
forall a.
(forall x. a -> Rep a x) -> (forall x. Rep a x -> a) -> Generic a
$cto :: forall x. Rep Permission x -> Permission
$cfrom :: forall x. Permission -> Rep Permission x
Prelude.Generic)

-- |
-- Create a value of 'Permission' 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:
--
-- 'action', 'permission_action' - An AWS Signer action permitted as part of cross-account permissions.
--
-- 'profileVersion', 'permission_profileVersion' - The signing profile version that a permission applies to.
--
-- 'principal', 'permission_principal' - The AWS principal that has been granted a cross-account permission.
--
-- 'statementId', 'permission_statementId' - A unique identifier for a cross-account permission statement.
newPermission ::
  Permission
newPermission :: Permission
newPermission =
  Permission' :: Maybe Text -> Maybe Text -> Maybe Text -> Maybe Text -> Permission
Permission'
    { $sel:action:Permission' :: Maybe Text
action = Maybe Text
forall a. Maybe a
Prelude.Nothing,
      $sel:profileVersion:Permission' :: Maybe Text
profileVersion = Maybe Text
forall a. Maybe a
Prelude.Nothing,
      $sel:principal:Permission' :: Maybe Text
principal = Maybe Text
forall a. Maybe a
Prelude.Nothing,
      $sel:statementId:Permission' :: Maybe Text
statementId = Maybe Text
forall a. Maybe a
Prelude.Nothing
    }

-- | An AWS Signer action permitted as part of cross-account permissions.
permission_action :: Lens.Lens' Permission (Prelude.Maybe Prelude.Text)
permission_action :: (Maybe Text -> f (Maybe Text)) -> Permission -> f Permission
permission_action = (Permission -> Maybe Text)
-> (Permission -> Maybe Text -> Permission)
-> Lens Permission Permission (Maybe Text) (Maybe Text)
forall s a b t. (s -> a) -> (s -> b -> t) -> Lens s t a b
Lens.lens (\Permission' {Maybe Text
action :: Maybe Text
$sel:action:Permission' :: Permission -> Maybe Text
action} -> Maybe Text
action) (\s :: Permission
s@Permission' {} Maybe Text
a -> Permission
s {$sel:action:Permission' :: Maybe Text
action = Maybe Text
a} :: Permission)

-- | The signing profile version that a permission applies to.
permission_profileVersion :: Lens.Lens' Permission (Prelude.Maybe Prelude.Text)
permission_profileVersion :: (Maybe Text -> f (Maybe Text)) -> Permission -> f Permission
permission_profileVersion = (Permission -> Maybe Text)
-> (Permission -> Maybe Text -> Permission)
-> Lens Permission Permission (Maybe Text) (Maybe Text)
forall s a b t. (s -> a) -> (s -> b -> t) -> Lens s t a b
Lens.lens (\Permission' {Maybe Text
profileVersion :: Maybe Text
$sel:profileVersion:Permission' :: Permission -> Maybe Text
profileVersion} -> Maybe Text
profileVersion) (\s :: Permission
s@Permission' {} Maybe Text
a -> Permission
s {$sel:profileVersion:Permission' :: Maybe Text
profileVersion = Maybe Text
a} :: Permission)

-- | The AWS principal that has been granted a cross-account permission.
permission_principal :: Lens.Lens' Permission (Prelude.Maybe Prelude.Text)
permission_principal :: (Maybe Text -> f (Maybe Text)) -> Permission -> f Permission
permission_principal = (Permission -> Maybe Text)
-> (Permission -> Maybe Text -> Permission)
-> Lens Permission Permission (Maybe Text) (Maybe Text)
forall s a b t. (s -> a) -> (s -> b -> t) -> Lens s t a b
Lens.lens (\Permission' {Maybe Text
principal :: Maybe Text
$sel:principal:Permission' :: Permission -> Maybe Text
principal} -> Maybe Text
principal) (\s :: Permission
s@Permission' {} Maybe Text
a -> Permission
s {$sel:principal:Permission' :: Maybe Text
principal = Maybe Text
a} :: Permission)

-- | A unique identifier for a cross-account permission statement.
permission_statementId :: Lens.Lens' Permission (Prelude.Maybe Prelude.Text)
permission_statementId :: (Maybe Text -> f (Maybe Text)) -> Permission -> f Permission
permission_statementId = (Permission -> Maybe Text)
-> (Permission -> Maybe Text -> Permission)
-> Lens Permission Permission (Maybe Text) (Maybe Text)
forall s a b t. (s -> a) -> (s -> b -> t) -> Lens s t a b
Lens.lens (\Permission' {Maybe Text
statementId :: Maybe Text
$sel:statementId:Permission' :: Permission -> Maybe Text
statementId} -> Maybe Text
statementId) (\s :: Permission
s@Permission' {} Maybe Text
a -> Permission
s {$sel:statementId:Permission' :: Maybe Text
statementId = Maybe Text
a} :: Permission)

instance Core.FromJSON Permission where
  parseJSON :: Value -> Parser Permission
parseJSON =
    String
-> (Object -> Parser Permission) -> Value -> Parser Permission
forall a. String -> (Object -> Parser a) -> Value -> Parser a
Core.withObject
      String
"Permission"
      ( \Object
x ->
          Maybe Text -> Maybe Text -> Maybe Text -> Maybe Text -> Permission
Permission'
            (Maybe Text
 -> Maybe Text -> Maybe Text -> Maybe Text -> Permission)
-> Parser (Maybe Text)
-> Parser (Maybe Text -> Maybe Text -> Maybe Text -> Permission)
forall (f :: * -> *) a b. Functor f => (a -> b) -> f a -> f b
Prelude.<$> (Object
x Object -> Text -> Parser (Maybe Text)
forall a. FromJSON a => Object -> Text -> Parser (Maybe a)
Core..:? Text
"action")
            Parser (Maybe Text -> Maybe Text -> Maybe Text -> Permission)
-> Parser (Maybe Text)
-> Parser (Maybe Text -> Maybe Text -> Permission)
forall (f :: * -> *) a b. Applicative f => f (a -> b) -> f a -> f b
Prelude.<*> (Object
x Object -> Text -> Parser (Maybe Text)
forall a. FromJSON a => Object -> Text -> Parser (Maybe a)
Core..:? Text
"profileVersion")
            Parser (Maybe Text -> Maybe Text -> Permission)
-> Parser (Maybe Text) -> Parser (Maybe Text -> Permission)
forall (f :: * -> *) a b. Applicative f => f (a -> b) -> f a -> f b
Prelude.<*> (Object
x Object -> Text -> Parser (Maybe Text)
forall a. FromJSON a => Object -> Text -> Parser (Maybe a)
Core..:? Text
"principal")
            Parser (Maybe Text -> Permission)
-> Parser (Maybe Text) -> Parser Permission
forall (f :: * -> *) a b. Applicative f => f (a -> b) -> f a -> f b
Prelude.<*> (Object
x Object -> Text -> Parser (Maybe Text)
forall a. FromJSON a => Object -> Text -> Parser (Maybe a)
Core..:? Text
"statementId")
      )

instance Prelude.Hashable Permission

instance Prelude.NFData Permission