{-# 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.Redshift.Types.AuthenticationProfile -- 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.Redshift.Types.AuthenticationProfile 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 import Amazonka.Redshift.Internal -- | Describes an authentication profile. -- -- /See:/ 'newAuthenticationProfile' smart constructor. data AuthenticationProfile = AuthenticationProfile' { -- | The content of the authentication profile in JSON format. The maximum -- length of the JSON string is determined by a quota for your account. authenticationProfileContent :: Prelude.Maybe Prelude.Text, -- | The name of the authentication profile. authenticationProfileName :: Prelude.Maybe Prelude.Text } deriving (Prelude.Eq, Prelude.Read, Prelude.Show, Prelude.Generic) -- | -- Create a value of 'AuthenticationProfile' 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: -- -- 'authenticationProfileContent', 'authenticationProfile_authenticationProfileContent' - The content of the authentication profile in JSON format. The maximum -- length of the JSON string is determined by a quota for your account. -- -- 'authenticationProfileName', 'authenticationProfile_authenticationProfileName' - The name of the authentication profile. newAuthenticationProfile :: AuthenticationProfile newAuthenticationProfile = AuthenticationProfile' { authenticationProfileContent = Prelude.Nothing, authenticationProfileName = Prelude.Nothing } -- | The content of the authentication profile in JSON format. The maximum -- length of the JSON string is determined by a quota for your account. authenticationProfile_authenticationProfileContent :: Lens.Lens' AuthenticationProfile (Prelude.Maybe Prelude.Text) authenticationProfile_authenticationProfileContent = Lens.lens (\AuthenticationProfile' {authenticationProfileContent} -> authenticationProfileContent) (\s@AuthenticationProfile' {} a -> s {authenticationProfileContent = a} :: AuthenticationProfile) -- | The name of the authentication profile. authenticationProfile_authenticationProfileName :: Lens.Lens' AuthenticationProfile (Prelude.Maybe Prelude.Text) authenticationProfile_authenticationProfileName = Lens.lens (\AuthenticationProfile' {authenticationProfileName} -> authenticationProfileName) (\s@AuthenticationProfile' {} a -> s {authenticationProfileName = a} :: AuthenticationProfile) instance Data.FromXML AuthenticationProfile where parseXML x = AuthenticationProfile' Prelude.<$> (x Data..@? "AuthenticationProfileContent") Prelude.<*> (x Data..@? "AuthenticationProfileName") instance Prelude.Hashable AuthenticationProfile where hashWithSalt _salt AuthenticationProfile' {..} = _salt `Prelude.hashWithSalt` authenticationProfileContent `Prelude.hashWithSalt` authenticationProfileName instance Prelude.NFData AuthenticationProfile where rnf AuthenticationProfile' {..} = Prelude.rnf authenticationProfileContent `Prelude.seq` Prelude.rnf authenticationProfileName