amazonka-accessanalyzer-2.0: gen/Amazonka/AccessAnalyzer/Types/AclGrantee.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.AccessAnalyzer.Types.AclGrantee
-- 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.AccessAnalyzer.Types.AclGrantee 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
-- | You specify each grantee as a type-value pair using one of these types.
-- You can specify only one type of grantee. For more information, see
-- <https://docs.aws.amazon.com/AmazonS3/latest/API/API_PutBucketAcl.html PutBucketAcl>.
--
-- /See:/ 'newAclGrantee' smart constructor.
data AclGrantee = AclGrantee'
{ -- | The value specified is the canonical user ID of an Amazon Web Services
-- account.
id :: Prelude.Maybe Prelude.Text,
-- | Used for granting permissions to a predefined group.
uri :: Prelude.Maybe Prelude.Text
}
deriving (Prelude.Eq, Prelude.Read, Prelude.Show, Prelude.Generic)
-- |
-- Create a value of 'AclGrantee' 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:
--
-- 'id', 'aclGrantee_id' - The value specified is the canonical user ID of an Amazon Web Services
-- account.
--
-- 'uri', 'aclGrantee_uri' - Used for granting permissions to a predefined group.
newAclGrantee ::
AclGrantee
newAclGrantee =
AclGrantee'
{ id = Prelude.Nothing,
uri = Prelude.Nothing
}
-- | The value specified is the canonical user ID of an Amazon Web Services
-- account.
aclGrantee_id :: Lens.Lens' AclGrantee (Prelude.Maybe Prelude.Text)
aclGrantee_id = Lens.lens (\AclGrantee' {id} -> id) (\s@AclGrantee' {} a -> s {id = a} :: AclGrantee)
-- | Used for granting permissions to a predefined group.
aclGrantee_uri :: Lens.Lens' AclGrantee (Prelude.Maybe Prelude.Text)
aclGrantee_uri = Lens.lens (\AclGrantee' {uri} -> uri) (\s@AclGrantee' {} a -> s {uri = a} :: AclGrantee)
instance Data.FromJSON AclGrantee where
parseJSON =
Data.withObject
"AclGrantee"
( \x ->
AclGrantee'
Prelude.<$> (x Data..:? "id")
Prelude.<*> (x Data..:? "uri")
)
instance Prelude.Hashable AclGrantee where
hashWithSalt _salt AclGrantee' {..} =
_salt
`Prelude.hashWithSalt` id
`Prelude.hashWithSalt` uri
instance Prelude.NFData AclGrantee where
rnf AclGrantee' {..} =
Prelude.rnf id `Prelude.seq` Prelude.rnf uri
instance Data.ToJSON AclGrantee where
toJSON AclGrantee' {..} =
Data.object
( Prelude.catMaybes
[ ("id" Data..=) Prelude.<$> id,
("uri" Data..=) Prelude.<$> uri
]
)