amazonka-appstream-2.0: gen/Amazonka/AppStream/Types/ServiceAccountCredentials.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.AppStream.Types.ServiceAccountCredentials
-- 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.AppStream.Types.ServiceAccountCredentials 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 the credentials for the service account used by the fleet or
-- image builder to connect to the directory.
--
-- /See:/ 'newServiceAccountCredentials' smart constructor.
data ServiceAccountCredentials = ServiceAccountCredentials'
{ -- | The user name of the account. This account must have the following
-- privileges: create computer objects, join computers to the domain, and
-- change\/reset the password on descendant computer objects for the
-- organizational units specified.
accountName :: Data.Sensitive Prelude.Text,
-- | The password for the account.
accountPassword :: Data.Sensitive Prelude.Text
}
deriving (Prelude.Eq, Prelude.Show, Prelude.Generic)
-- |
-- Create a value of 'ServiceAccountCredentials' 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:
--
-- 'accountName', 'serviceAccountCredentials_accountName' - The user name of the account. This account must have the following
-- privileges: create computer objects, join computers to the domain, and
-- change\/reset the password on descendant computer objects for the
-- organizational units specified.
--
-- 'accountPassword', 'serviceAccountCredentials_accountPassword' - The password for the account.
newServiceAccountCredentials ::
-- | 'accountName'
Prelude.Text ->
-- | 'accountPassword'
Prelude.Text ->
ServiceAccountCredentials
newServiceAccountCredentials
pAccountName_
pAccountPassword_ =
ServiceAccountCredentials'
{ accountName =
Data._Sensitive Lens.# pAccountName_,
accountPassword =
Data._Sensitive Lens.# pAccountPassword_
}
-- | The user name of the account. This account must have the following
-- privileges: create computer objects, join computers to the domain, and
-- change\/reset the password on descendant computer objects for the
-- organizational units specified.
serviceAccountCredentials_accountName :: Lens.Lens' ServiceAccountCredentials Prelude.Text
serviceAccountCredentials_accountName = Lens.lens (\ServiceAccountCredentials' {accountName} -> accountName) (\s@ServiceAccountCredentials' {} a -> s {accountName = a} :: ServiceAccountCredentials) Prelude.. Data._Sensitive
-- | The password for the account.
serviceAccountCredentials_accountPassword :: Lens.Lens' ServiceAccountCredentials Prelude.Text
serviceAccountCredentials_accountPassword = Lens.lens (\ServiceAccountCredentials' {accountPassword} -> accountPassword) (\s@ServiceAccountCredentials' {} a -> s {accountPassword = a} :: ServiceAccountCredentials) Prelude.. Data._Sensitive
instance Data.FromJSON ServiceAccountCredentials where
parseJSON =
Data.withObject
"ServiceAccountCredentials"
( \x ->
ServiceAccountCredentials'
Prelude.<$> (x Data..: "AccountName")
Prelude.<*> (x Data..: "AccountPassword")
)
instance Prelude.Hashable ServiceAccountCredentials where
hashWithSalt _salt ServiceAccountCredentials' {..} =
_salt
`Prelude.hashWithSalt` accountName
`Prelude.hashWithSalt` accountPassword
instance Prelude.NFData ServiceAccountCredentials where
rnf ServiceAccountCredentials' {..} =
Prelude.rnf accountName
`Prelude.seq` Prelude.rnf accountPassword
instance Data.ToJSON ServiceAccountCredentials where
toJSON ServiceAccountCredentials' {..} =
Data.object
( Prelude.catMaybes
[ Prelude.Just ("AccountName" Data..= accountName),
Prelude.Just
("AccountPassword" Data..= accountPassword)
]
)