{-# 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.WorkSpacesWeb.Types.UserSettings
-- 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.WorkSpacesWeb.Types.UserSettings 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.WorkSpacesWeb.Types.EnabledType

-- | A user settings resource that can be associated with a web portal. Once
-- associated with a web portal, user settings control how users can
-- transfer data between a streaming session and the their local devices.
--
-- /See:/ 'newUserSettings' smart constructor.
data UserSettings = UserSettings'
  { -- | A list of web portal ARNs that this user settings is associated with.
    UserSettings -> Maybe [Text]
associatedPortalArns :: Prelude.Maybe [Prelude.Text],
    -- | Specifies whether the user can copy text from the streaming session to
    -- the local device.
    UserSettings -> Maybe EnabledType
copyAllowed :: Prelude.Maybe EnabledType,
    -- | The amount of time that a streaming session remains active after users
    -- disconnect.
    UserSettings -> Maybe Natural
disconnectTimeoutInMinutes :: Prelude.Maybe Prelude.Natural,
    -- | Specifies whether the user can download files from the streaming session
    -- to the local device.
    UserSettings -> Maybe EnabledType
downloadAllowed :: Prelude.Maybe EnabledType,
    -- | The amount of time that users can be idle (inactive) before they are
    -- disconnected from their streaming session and the disconnect timeout
    -- interval begins.
    UserSettings -> Maybe Natural
idleDisconnectTimeoutInMinutes :: Prelude.Maybe Prelude.Natural,
    -- | Specifies whether the user can paste text from the local device to the
    -- streaming session.
    UserSettings -> Maybe EnabledType
pasteAllowed :: Prelude.Maybe EnabledType,
    -- | Specifies whether the user can print to the local device.
    UserSettings -> Maybe EnabledType
printAllowed :: Prelude.Maybe EnabledType,
    -- | Specifies whether the user can upload files from the local device to the
    -- streaming session.
    UserSettings -> Maybe EnabledType
uploadAllowed :: Prelude.Maybe EnabledType,
    -- | The ARN of the user settings.
    UserSettings -> Text
userSettingsArn :: Prelude.Text
  }
  deriving (UserSettings -> UserSettings -> Bool
forall a. (a -> a -> Bool) -> (a -> a -> Bool) -> Eq a
/= :: UserSettings -> UserSettings -> Bool
$c/= :: UserSettings -> UserSettings -> Bool
== :: UserSettings -> UserSettings -> Bool
$c== :: UserSettings -> UserSettings -> Bool
Prelude.Eq, ReadPrec [UserSettings]
ReadPrec UserSettings
Int -> ReadS UserSettings
ReadS [UserSettings]
forall a.
(Int -> ReadS a)
-> ReadS [a] -> ReadPrec a -> ReadPrec [a] -> Read a
readListPrec :: ReadPrec [UserSettings]
$creadListPrec :: ReadPrec [UserSettings]
readPrec :: ReadPrec UserSettings
$creadPrec :: ReadPrec UserSettings
readList :: ReadS [UserSettings]
$creadList :: ReadS [UserSettings]
readsPrec :: Int -> ReadS UserSettings
$creadsPrec :: Int -> ReadS UserSettings
Prelude.Read, Int -> UserSettings -> ShowS
[UserSettings] -> ShowS
UserSettings -> String
forall a.
(Int -> a -> ShowS) -> (a -> String) -> ([a] -> ShowS) -> Show a
showList :: [UserSettings] -> ShowS
$cshowList :: [UserSettings] -> ShowS
show :: UserSettings -> String
$cshow :: UserSettings -> String
showsPrec :: Int -> UserSettings -> ShowS
$cshowsPrec :: Int -> UserSettings -> ShowS
Prelude.Show, forall x. Rep UserSettings x -> UserSettings
forall x. UserSettings -> Rep UserSettings x
forall a.
(forall x. a -> Rep a x) -> (forall x. Rep a x -> a) -> Generic a
$cto :: forall x. Rep UserSettings x -> UserSettings
$cfrom :: forall x. UserSettings -> Rep UserSettings x
Prelude.Generic)

-- |
-- Create a value of 'UserSettings' 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:
--
-- 'associatedPortalArns', 'userSettings_associatedPortalArns' - A list of web portal ARNs that this user settings is associated with.
--
-- 'copyAllowed', 'userSettings_copyAllowed' - Specifies whether the user can copy text from the streaming session to
-- the local device.
--
-- 'disconnectTimeoutInMinutes', 'userSettings_disconnectTimeoutInMinutes' - The amount of time that a streaming session remains active after users
-- disconnect.
--
-- 'downloadAllowed', 'userSettings_downloadAllowed' - Specifies whether the user can download files from the streaming session
-- to the local device.
--
-- 'idleDisconnectTimeoutInMinutes', 'userSettings_idleDisconnectTimeoutInMinutes' - The amount of time that users can be idle (inactive) before they are
-- disconnected from their streaming session and the disconnect timeout
-- interval begins.
--
-- 'pasteAllowed', 'userSettings_pasteAllowed' - Specifies whether the user can paste text from the local device to the
-- streaming session.
--
-- 'printAllowed', 'userSettings_printAllowed' - Specifies whether the user can print to the local device.
--
-- 'uploadAllowed', 'userSettings_uploadAllowed' - Specifies whether the user can upload files from the local device to the
-- streaming session.
--
-- 'userSettingsArn', 'userSettings_userSettingsArn' - The ARN of the user settings.
newUserSettings ::
  -- | 'userSettingsArn'
  Prelude.Text ->
  UserSettings
newUserSettings :: Text -> UserSettings
newUserSettings Text
pUserSettingsArn_ =
  UserSettings'
    { $sel:associatedPortalArns:UserSettings' :: Maybe [Text]
associatedPortalArns =
        forall a. Maybe a
Prelude.Nothing,
      $sel:copyAllowed:UserSettings' :: Maybe EnabledType
copyAllowed = forall a. Maybe a
Prelude.Nothing,
      $sel:disconnectTimeoutInMinutes:UserSettings' :: Maybe Natural
disconnectTimeoutInMinutes = forall a. Maybe a
Prelude.Nothing,
      $sel:downloadAllowed:UserSettings' :: Maybe EnabledType
downloadAllowed = forall a. Maybe a
Prelude.Nothing,
      $sel:idleDisconnectTimeoutInMinutes:UserSettings' :: Maybe Natural
idleDisconnectTimeoutInMinutes = forall a. Maybe a
Prelude.Nothing,
      $sel:pasteAllowed:UserSettings' :: Maybe EnabledType
pasteAllowed = forall a. Maybe a
Prelude.Nothing,
      $sel:printAllowed:UserSettings' :: Maybe EnabledType
printAllowed = forall a. Maybe a
Prelude.Nothing,
      $sel:uploadAllowed:UserSettings' :: Maybe EnabledType
uploadAllowed = forall a. Maybe a
Prelude.Nothing,
      $sel:userSettingsArn:UserSettings' :: Text
userSettingsArn = Text
pUserSettingsArn_
    }

-- | A list of web portal ARNs that this user settings is associated with.
userSettings_associatedPortalArns :: Lens.Lens' UserSettings (Prelude.Maybe [Prelude.Text])
userSettings_associatedPortalArns :: Lens' UserSettings (Maybe [Text])
userSettings_associatedPortalArns = forall s a b t. (s -> a) -> (s -> b -> t) -> Lens s t a b
Lens.lens (\UserSettings' {Maybe [Text]
associatedPortalArns :: Maybe [Text]
$sel:associatedPortalArns:UserSettings' :: UserSettings -> Maybe [Text]
associatedPortalArns} -> Maybe [Text]
associatedPortalArns) (\s :: UserSettings
s@UserSettings' {} Maybe [Text]
a -> UserSettings
s {$sel:associatedPortalArns:UserSettings' :: Maybe [Text]
associatedPortalArns = Maybe [Text]
a} :: UserSettings) forall b c a. (b -> c) -> (a -> b) -> a -> c
Prelude.. forall (f :: * -> *) (g :: * -> *) s t a b.
(Functor f, Functor g) =>
AnIso s t a b -> Iso (f s) (g t) (f a) (g b)
Lens.mapping forall s t a b. (Coercible s a, Coercible t b) => Iso s t a b
Lens.coerced

-- | Specifies whether the user can copy text from the streaming session to
-- the local device.
userSettings_copyAllowed :: Lens.Lens' UserSettings (Prelude.Maybe EnabledType)
userSettings_copyAllowed :: Lens' UserSettings (Maybe EnabledType)
userSettings_copyAllowed = forall s a b t. (s -> a) -> (s -> b -> t) -> Lens s t a b
Lens.lens (\UserSettings' {Maybe EnabledType
copyAllowed :: Maybe EnabledType
$sel:copyAllowed:UserSettings' :: UserSettings -> Maybe EnabledType
copyAllowed} -> Maybe EnabledType
copyAllowed) (\s :: UserSettings
s@UserSettings' {} Maybe EnabledType
a -> UserSettings
s {$sel:copyAllowed:UserSettings' :: Maybe EnabledType
copyAllowed = Maybe EnabledType
a} :: UserSettings)

-- | The amount of time that a streaming session remains active after users
-- disconnect.
userSettings_disconnectTimeoutInMinutes :: Lens.Lens' UserSettings (Prelude.Maybe Prelude.Natural)
userSettings_disconnectTimeoutInMinutes :: Lens' UserSettings (Maybe Natural)
userSettings_disconnectTimeoutInMinutes = forall s a b t. (s -> a) -> (s -> b -> t) -> Lens s t a b
Lens.lens (\UserSettings' {Maybe Natural
disconnectTimeoutInMinutes :: Maybe Natural
$sel:disconnectTimeoutInMinutes:UserSettings' :: UserSettings -> Maybe Natural
disconnectTimeoutInMinutes} -> Maybe Natural
disconnectTimeoutInMinutes) (\s :: UserSettings
s@UserSettings' {} Maybe Natural
a -> UserSettings
s {$sel:disconnectTimeoutInMinutes:UserSettings' :: Maybe Natural
disconnectTimeoutInMinutes = Maybe Natural
a} :: UserSettings)

-- | Specifies whether the user can download files from the streaming session
-- to the local device.
userSettings_downloadAllowed :: Lens.Lens' UserSettings (Prelude.Maybe EnabledType)
userSettings_downloadAllowed :: Lens' UserSettings (Maybe EnabledType)
userSettings_downloadAllowed = forall s a b t. (s -> a) -> (s -> b -> t) -> Lens s t a b
Lens.lens (\UserSettings' {Maybe EnabledType
downloadAllowed :: Maybe EnabledType
$sel:downloadAllowed:UserSettings' :: UserSettings -> Maybe EnabledType
downloadAllowed} -> Maybe EnabledType
downloadAllowed) (\s :: UserSettings
s@UserSettings' {} Maybe EnabledType
a -> UserSettings
s {$sel:downloadAllowed:UserSettings' :: Maybe EnabledType
downloadAllowed = Maybe EnabledType
a} :: UserSettings)

-- | The amount of time that users can be idle (inactive) before they are
-- disconnected from their streaming session and the disconnect timeout
-- interval begins.
userSettings_idleDisconnectTimeoutInMinutes :: Lens.Lens' UserSettings (Prelude.Maybe Prelude.Natural)
userSettings_idleDisconnectTimeoutInMinutes :: Lens' UserSettings (Maybe Natural)
userSettings_idleDisconnectTimeoutInMinutes = forall s a b t. (s -> a) -> (s -> b -> t) -> Lens s t a b
Lens.lens (\UserSettings' {Maybe Natural
idleDisconnectTimeoutInMinutes :: Maybe Natural
$sel:idleDisconnectTimeoutInMinutes:UserSettings' :: UserSettings -> Maybe Natural
idleDisconnectTimeoutInMinutes} -> Maybe Natural
idleDisconnectTimeoutInMinutes) (\s :: UserSettings
s@UserSettings' {} Maybe Natural
a -> UserSettings
s {$sel:idleDisconnectTimeoutInMinutes:UserSettings' :: Maybe Natural
idleDisconnectTimeoutInMinutes = Maybe Natural
a} :: UserSettings)

-- | Specifies whether the user can paste text from the local device to the
-- streaming session.
userSettings_pasteAllowed :: Lens.Lens' UserSettings (Prelude.Maybe EnabledType)
userSettings_pasteAllowed :: Lens' UserSettings (Maybe EnabledType)
userSettings_pasteAllowed = forall s a b t. (s -> a) -> (s -> b -> t) -> Lens s t a b
Lens.lens (\UserSettings' {Maybe EnabledType
pasteAllowed :: Maybe EnabledType
$sel:pasteAllowed:UserSettings' :: UserSettings -> Maybe EnabledType
pasteAllowed} -> Maybe EnabledType
pasteAllowed) (\s :: UserSettings
s@UserSettings' {} Maybe EnabledType
a -> UserSettings
s {$sel:pasteAllowed:UserSettings' :: Maybe EnabledType
pasteAllowed = Maybe EnabledType
a} :: UserSettings)

-- | Specifies whether the user can print to the local device.
userSettings_printAllowed :: Lens.Lens' UserSettings (Prelude.Maybe EnabledType)
userSettings_printAllowed :: Lens' UserSettings (Maybe EnabledType)
userSettings_printAllowed = forall s a b t. (s -> a) -> (s -> b -> t) -> Lens s t a b
Lens.lens (\UserSettings' {Maybe EnabledType
printAllowed :: Maybe EnabledType
$sel:printAllowed:UserSettings' :: UserSettings -> Maybe EnabledType
printAllowed} -> Maybe EnabledType
printAllowed) (\s :: UserSettings
s@UserSettings' {} Maybe EnabledType
a -> UserSettings
s {$sel:printAllowed:UserSettings' :: Maybe EnabledType
printAllowed = Maybe EnabledType
a} :: UserSettings)

-- | Specifies whether the user can upload files from the local device to the
-- streaming session.
userSettings_uploadAllowed :: Lens.Lens' UserSettings (Prelude.Maybe EnabledType)
userSettings_uploadAllowed :: Lens' UserSettings (Maybe EnabledType)
userSettings_uploadAllowed = forall s a b t. (s -> a) -> (s -> b -> t) -> Lens s t a b
Lens.lens (\UserSettings' {Maybe EnabledType
uploadAllowed :: Maybe EnabledType
$sel:uploadAllowed:UserSettings' :: UserSettings -> Maybe EnabledType
uploadAllowed} -> Maybe EnabledType
uploadAllowed) (\s :: UserSettings
s@UserSettings' {} Maybe EnabledType
a -> UserSettings
s {$sel:uploadAllowed:UserSettings' :: Maybe EnabledType
uploadAllowed = Maybe EnabledType
a} :: UserSettings)

-- | The ARN of the user settings.
userSettings_userSettingsArn :: Lens.Lens' UserSettings Prelude.Text
userSettings_userSettingsArn :: Lens' UserSettings Text
userSettings_userSettingsArn = forall s a b t. (s -> a) -> (s -> b -> t) -> Lens s t a b
Lens.lens (\UserSettings' {Text
userSettingsArn :: Text
$sel:userSettingsArn:UserSettings' :: UserSettings -> Text
userSettingsArn} -> Text
userSettingsArn) (\s :: UserSettings
s@UserSettings' {} Text
a -> UserSettings
s {$sel:userSettingsArn:UserSettings' :: Text
userSettingsArn = Text
a} :: UserSettings)

instance Data.FromJSON UserSettings where
  parseJSON :: Value -> Parser UserSettings
parseJSON =
    forall a. String -> (Object -> Parser a) -> Value -> Parser a
Data.withObject
      String
"UserSettings"
      ( \Object
x ->
          Maybe [Text]
-> Maybe EnabledType
-> Maybe Natural
-> Maybe EnabledType
-> Maybe Natural
-> Maybe EnabledType
-> Maybe EnabledType
-> Maybe EnabledType
-> Text
-> UserSettings
UserSettings'
            forall (f :: * -> *) a b. Functor f => (a -> b) -> f a -> f b
Prelude.<$> ( Object
x
                            forall a. FromJSON a => Object -> Key -> Parser (Maybe a)
Data..:? Key
"associatedPortalArns"
                            forall a. Parser (Maybe a) -> a -> Parser a
Data..!= forall a. Monoid a => a
Prelude.mempty
                        )
            forall (f :: * -> *) a b. Applicative f => f (a -> b) -> f a -> f b
Prelude.<*> (Object
x forall a. FromJSON a => Object -> Key -> Parser (Maybe a)
Data..:? Key
"copyAllowed")
            forall (f :: * -> *) a b. Applicative f => f (a -> b) -> f a -> f b
Prelude.<*> (Object
x forall a. FromJSON a => Object -> Key -> Parser (Maybe a)
Data..:? Key
"disconnectTimeoutInMinutes")
            forall (f :: * -> *) a b. Applicative f => f (a -> b) -> f a -> f b
Prelude.<*> (Object
x forall a. FromJSON a => Object -> Key -> Parser (Maybe a)
Data..:? Key
"downloadAllowed")
            forall (f :: * -> *) a b. Applicative f => f (a -> b) -> f a -> f b
Prelude.<*> (Object
x forall a. FromJSON a => Object -> Key -> Parser (Maybe a)
Data..:? Key
"idleDisconnectTimeoutInMinutes")
            forall (f :: * -> *) a b. Applicative f => f (a -> b) -> f a -> f b
Prelude.<*> (Object
x forall a. FromJSON a => Object -> Key -> Parser (Maybe a)
Data..:? Key
"pasteAllowed")
            forall (f :: * -> *) a b. Applicative f => f (a -> b) -> f a -> f b
Prelude.<*> (Object
x forall a. FromJSON a => Object -> Key -> Parser (Maybe a)
Data..:? Key
"printAllowed")
            forall (f :: * -> *) a b. Applicative f => f (a -> b) -> f a -> f b
Prelude.<*> (Object
x forall a. FromJSON a => Object -> Key -> Parser (Maybe a)
Data..:? Key
"uploadAllowed")
            forall (f :: * -> *) a b. Applicative f => f (a -> b) -> f a -> f b
Prelude.<*> (Object
x forall a. FromJSON a => Object -> Key -> Parser a
Data..: Key
"userSettingsArn")
      )

instance Prelude.Hashable UserSettings where
  hashWithSalt :: Int -> UserSettings -> Int
hashWithSalt Int
_salt UserSettings' {Maybe Natural
Maybe [Text]
Maybe EnabledType
Text
userSettingsArn :: Text
uploadAllowed :: Maybe EnabledType
printAllowed :: Maybe EnabledType
pasteAllowed :: Maybe EnabledType
idleDisconnectTimeoutInMinutes :: Maybe Natural
downloadAllowed :: Maybe EnabledType
disconnectTimeoutInMinutes :: Maybe Natural
copyAllowed :: Maybe EnabledType
associatedPortalArns :: Maybe [Text]
$sel:userSettingsArn:UserSettings' :: UserSettings -> Text
$sel:uploadAllowed:UserSettings' :: UserSettings -> Maybe EnabledType
$sel:printAllowed:UserSettings' :: UserSettings -> Maybe EnabledType
$sel:pasteAllowed:UserSettings' :: UserSettings -> Maybe EnabledType
$sel:idleDisconnectTimeoutInMinutes:UserSettings' :: UserSettings -> Maybe Natural
$sel:downloadAllowed:UserSettings' :: UserSettings -> Maybe EnabledType
$sel:disconnectTimeoutInMinutes:UserSettings' :: UserSettings -> Maybe Natural
$sel:copyAllowed:UserSettings' :: UserSettings -> Maybe EnabledType
$sel:associatedPortalArns:UserSettings' :: UserSettings -> Maybe [Text]
..} =
    Int
_salt
      forall a. Hashable a => Int -> a -> Int
`Prelude.hashWithSalt` Maybe [Text]
associatedPortalArns
      forall a. Hashable a => Int -> a -> Int
`Prelude.hashWithSalt` Maybe EnabledType
copyAllowed
      forall a. Hashable a => Int -> a -> Int
`Prelude.hashWithSalt` Maybe Natural
disconnectTimeoutInMinutes
      forall a. Hashable a => Int -> a -> Int
`Prelude.hashWithSalt` Maybe EnabledType
downloadAllowed
      forall a. Hashable a => Int -> a -> Int
`Prelude.hashWithSalt` Maybe Natural
idleDisconnectTimeoutInMinutes
      forall a. Hashable a => Int -> a -> Int
`Prelude.hashWithSalt` Maybe EnabledType
pasteAllowed
      forall a. Hashable a => Int -> a -> Int
`Prelude.hashWithSalt` Maybe EnabledType
printAllowed
      forall a. Hashable a => Int -> a -> Int
`Prelude.hashWithSalt` Maybe EnabledType
uploadAllowed
      forall a. Hashable a => Int -> a -> Int
`Prelude.hashWithSalt` Text
userSettingsArn

instance Prelude.NFData UserSettings where
  rnf :: UserSettings -> ()
rnf UserSettings' {Maybe Natural
Maybe [Text]
Maybe EnabledType
Text
userSettingsArn :: Text
uploadAllowed :: Maybe EnabledType
printAllowed :: Maybe EnabledType
pasteAllowed :: Maybe EnabledType
idleDisconnectTimeoutInMinutes :: Maybe Natural
downloadAllowed :: Maybe EnabledType
disconnectTimeoutInMinutes :: Maybe Natural
copyAllowed :: Maybe EnabledType
associatedPortalArns :: Maybe [Text]
$sel:userSettingsArn:UserSettings' :: UserSettings -> Text
$sel:uploadAllowed:UserSettings' :: UserSettings -> Maybe EnabledType
$sel:printAllowed:UserSettings' :: UserSettings -> Maybe EnabledType
$sel:pasteAllowed:UserSettings' :: UserSettings -> Maybe EnabledType
$sel:idleDisconnectTimeoutInMinutes:UserSettings' :: UserSettings -> Maybe Natural
$sel:downloadAllowed:UserSettings' :: UserSettings -> Maybe EnabledType
$sel:disconnectTimeoutInMinutes:UserSettings' :: UserSettings -> Maybe Natural
$sel:copyAllowed:UserSettings' :: UserSettings -> Maybe EnabledType
$sel:associatedPortalArns:UserSettings' :: UserSettings -> Maybe [Text]
..} =
    forall a. NFData a => a -> ()
Prelude.rnf Maybe [Text]
associatedPortalArns
      seq :: forall a b. a -> b -> b
`Prelude.seq` forall a. NFData a => a -> ()
Prelude.rnf Maybe EnabledType
copyAllowed
      seq :: forall a b. a -> b -> b
`Prelude.seq` forall a. NFData a => a -> ()
Prelude.rnf Maybe Natural
disconnectTimeoutInMinutes
      seq :: forall a b. a -> b -> b
`Prelude.seq` forall a. NFData a => a -> ()
Prelude.rnf Maybe EnabledType
downloadAllowed
      seq :: forall a b. a -> b -> b
`Prelude.seq` forall a. NFData a => a -> ()
Prelude.rnf Maybe Natural
idleDisconnectTimeoutInMinutes
      seq :: forall a b. a -> b -> b
`Prelude.seq` forall a. NFData a => a -> ()
Prelude.rnf Maybe EnabledType
pasteAllowed
      seq :: forall a b. a -> b -> b
`Prelude.seq` forall a. NFData a => a -> ()
Prelude.rnf Maybe EnabledType
printAllowed
      seq :: forall a b. a -> b -> b
`Prelude.seq` forall a. NFData a => a -> ()
Prelude.rnf Maybe EnabledType
uploadAllowed
      seq :: forall a b. a -> b -> b
`Prelude.seq` forall a. NFData a => a -> ()
Prelude.rnf Text
userSettingsArn