module Stratosphere.WorkSpacesWeb.UserSettings (
module Exports, UserSettings(..), mkUserSettings
) where
import qualified Data.Aeson as JSON
import qualified Stratosphere.Prelude as Prelude
import Stratosphere.Property
import {-# SOURCE #-} Stratosphere.WorkSpacesWeb.UserSettings.CookieSynchronizationConfigurationProperty as Exports
import {-# SOURCE #-} Stratosphere.WorkSpacesWeb.UserSettings.ToolbarConfigurationProperty as Exports
import Stratosphere.ResourceProperties
import Stratosphere.Tag
import Stratosphere.Value
data UserSettings
=
UserSettings {UserSettings -> ()
haddock_workaround_ :: (),
UserSettings -> Maybe (Map Text (Value Text))
additionalEncryptionContext :: (Prelude.Maybe (Prelude.Map Prelude.Text (Value Prelude.Text))),
UserSettings -> Maybe CookieSynchronizationConfigurationProperty
cookieSynchronizationConfiguration :: (Prelude.Maybe CookieSynchronizationConfigurationProperty),
UserSettings -> Value Text
copyAllowed :: (Value Prelude.Text),
UserSettings -> Maybe (Value Text)
customerManagedKey :: (Prelude.Maybe (Value Prelude.Text)),
UserSettings -> Maybe (Value Text)
deepLinkAllowed :: (Prelude.Maybe (Value Prelude.Text)),
UserSettings -> Maybe (Value Double)
disconnectTimeoutInMinutes :: (Prelude.Maybe (Value Prelude.Double)),
UserSettings -> Value Text
downloadAllowed :: (Value Prelude.Text),
UserSettings -> Maybe (Value Double)
idleDisconnectTimeoutInMinutes :: (Prelude.Maybe (Value Prelude.Double)),
UserSettings -> Value Text
pasteAllowed :: (Value Prelude.Text),
UserSettings -> Value Text
printAllowed :: (Value Prelude.Text),
UserSettings -> Maybe [Tag]
tags :: (Prelude.Maybe [Tag]),
UserSettings -> Maybe ToolbarConfigurationProperty
toolbarConfiguration :: (Prelude.Maybe ToolbarConfigurationProperty),
UserSettings -> Value Text
uploadAllowed :: (Value Prelude.Text)}
deriving stock (UserSettings -> UserSettings -> Bool
(UserSettings -> UserSettings -> Bool)
-> (UserSettings -> UserSettings -> Bool) -> Eq UserSettings
forall a. (a -> a -> Bool) -> (a -> a -> Bool) -> Eq a
$c== :: UserSettings -> UserSettings -> Bool
== :: UserSettings -> UserSettings -> Bool
$c/= :: UserSettings -> UserSettings -> Bool
/= :: UserSettings -> UserSettings -> Bool
Prelude.Eq, Int -> UserSettings -> ShowS
[UserSettings] -> ShowS
UserSettings -> String
(Int -> UserSettings -> ShowS)
-> (UserSettings -> String)
-> ([UserSettings] -> ShowS)
-> Show UserSettings
forall a.
(Int -> a -> ShowS) -> (a -> String) -> ([a] -> ShowS) -> Show a
$cshowsPrec :: Int -> UserSettings -> ShowS
showsPrec :: Int -> UserSettings -> ShowS
$cshow :: UserSettings -> String
show :: UserSettings -> String
$cshowList :: [UserSettings] -> ShowS
showList :: [UserSettings] -> ShowS
Prelude.Show)
mkUserSettings ::
Value Prelude.Text
-> Value Prelude.Text
-> Value Prelude.Text
-> Value Prelude.Text -> Value Prelude.Text -> UserSettings
mkUserSettings :: Value Text
-> Value Text
-> Value Text
-> Value Text
-> Value Text
-> UserSettings
mkUserSettings
Value Text
copyAllowed
Value Text
downloadAllowed
Value Text
pasteAllowed
Value Text
printAllowed
Value Text
uploadAllowed
= UserSettings
{haddock_workaround_ :: ()
haddock_workaround_ = (), copyAllowed :: Value Text
copyAllowed = Value Text
copyAllowed,
downloadAllowed :: Value Text
downloadAllowed = Value Text
downloadAllowed, pasteAllowed :: Value Text
pasteAllowed = Value Text
pasteAllowed,
printAllowed :: Value Text
printAllowed = Value Text
printAllowed, uploadAllowed :: Value Text
uploadAllowed = Value Text
uploadAllowed,
additionalEncryptionContext :: Maybe (Map Text (Value Text))
additionalEncryptionContext = Maybe (Map Text (Value Text))
forall a. Maybe a
Prelude.Nothing,
cookieSynchronizationConfiguration :: Maybe CookieSynchronizationConfigurationProperty
cookieSynchronizationConfiguration = Maybe CookieSynchronizationConfigurationProperty
forall a. Maybe a
Prelude.Nothing,
customerManagedKey :: Maybe (Value Text)
customerManagedKey = Maybe (Value Text)
forall a. Maybe a
Prelude.Nothing,
deepLinkAllowed :: Maybe (Value Text)
deepLinkAllowed = Maybe (Value Text)
forall a. Maybe a
Prelude.Nothing,
disconnectTimeoutInMinutes :: Maybe (Value Double)
disconnectTimeoutInMinutes = Maybe (Value Double)
forall a. Maybe a
Prelude.Nothing,
idleDisconnectTimeoutInMinutes :: Maybe (Value Double)
idleDisconnectTimeoutInMinutes = Maybe (Value Double)
forall a. Maybe a
Prelude.Nothing,
tags :: Maybe [Tag]
tags = Maybe [Tag]
forall a. Maybe a
Prelude.Nothing, toolbarConfiguration :: Maybe ToolbarConfigurationProperty
toolbarConfiguration = Maybe ToolbarConfigurationProperty
forall a. Maybe a
Prelude.Nothing}
instance ToResourceProperties UserSettings where
toResourceProperties :: UserSettings -> ResourceProperties
toResourceProperties UserSettings {Maybe [Tag]
Maybe (Map Text (Value Text))
Maybe (Value Double)
Maybe (Value Text)
Maybe CookieSynchronizationConfigurationProperty
Maybe ToolbarConfigurationProperty
()
Value Text
haddock_workaround_ :: UserSettings -> ()
additionalEncryptionContext :: UserSettings -> Maybe (Map Text (Value Text))
cookieSynchronizationConfiguration :: UserSettings -> Maybe CookieSynchronizationConfigurationProperty
copyAllowed :: UserSettings -> Value Text
customerManagedKey :: UserSettings -> Maybe (Value Text)
deepLinkAllowed :: UserSettings -> Maybe (Value Text)
disconnectTimeoutInMinutes :: UserSettings -> Maybe (Value Double)
downloadAllowed :: UserSettings -> Value Text
idleDisconnectTimeoutInMinutes :: UserSettings -> Maybe (Value Double)
pasteAllowed :: UserSettings -> Value Text
printAllowed :: UserSettings -> Value Text
tags :: UserSettings -> Maybe [Tag]
toolbarConfiguration :: UserSettings -> Maybe ToolbarConfigurationProperty
uploadAllowed :: UserSettings -> Value Text
haddock_workaround_ :: ()
additionalEncryptionContext :: Maybe (Map Text (Value Text))
cookieSynchronizationConfiguration :: Maybe CookieSynchronizationConfigurationProperty
copyAllowed :: Value Text
customerManagedKey :: Maybe (Value Text)
deepLinkAllowed :: Maybe (Value Text)
disconnectTimeoutInMinutes :: Maybe (Value Double)
downloadAllowed :: Value Text
idleDisconnectTimeoutInMinutes :: Maybe (Value Double)
pasteAllowed :: Value Text
printAllowed :: Value Text
tags :: Maybe [Tag]
toolbarConfiguration :: Maybe ToolbarConfigurationProperty
uploadAllowed :: Value Text
..}
= ResourceProperties
{awsType :: Text
awsType = Text
"AWS::WorkSpacesWeb::UserSettings",
supportsTags :: Bool
supportsTags = Bool
Prelude.True,
properties :: Object
properties = [Item Object] -> Object
forall l. IsList l => [Item l] -> l
Prelude.fromList
([(Key, Value)] -> [(Key, Value)] -> [(Key, Value)]
forall a. Semigroup a => a -> a -> a
(Prelude.<>)
[Key
"CopyAllowed" Key -> Value Text -> (Key, Value)
forall v. ToJSON v => Key -> v -> (Key, Value)
forall e kv v. (KeyValue e kv, ToJSON v) => Key -> v -> kv
JSON..= Value Text
copyAllowed,
Key
"DownloadAllowed" Key -> Value Text -> (Key, Value)
forall v. ToJSON v => Key -> v -> (Key, Value)
forall e kv v. (KeyValue e kv, ToJSON v) => Key -> v -> kv
JSON..= Value Text
downloadAllowed,
Key
"PasteAllowed" Key -> Value Text -> (Key, Value)
forall v. ToJSON v => Key -> v -> (Key, Value)
forall e kv v. (KeyValue e kv, ToJSON v) => Key -> v -> kv
JSON..= Value Text
pasteAllowed,
Key
"PrintAllowed" Key -> Value Text -> (Key, Value)
forall v. ToJSON v => Key -> v -> (Key, Value)
forall e kv v. (KeyValue e kv, ToJSON v) => Key -> v -> kv
JSON..= Value Text
printAllowed,
Key
"UploadAllowed" Key -> Value Text -> (Key, Value)
forall v. ToJSON v => Key -> v -> (Key, Value)
forall e kv v. (KeyValue e kv, ToJSON v) => Key -> v -> kv
JSON..= Value Text
uploadAllowed]
([Maybe (Key, Value)] -> [(Key, Value)]
forall a. [Maybe a] -> [a]
Prelude.catMaybes
[Key -> Map Text (Value Text) -> (Key, Value)
forall v. ToJSON v => Key -> v -> (Key, Value)
forall e kv v. (KeyValue e kv, ToJSON v) => Key -> v -> kv
(JSON..=) Key
"AdditionalEncryptionContext"
(Map Text (Value Text) -> (Key, Value))
-> Maybe (Map Text (Value Text)) -> Maybe (Key, Value)
forall (f :: * -> *) a b. Functor f => (a -> b) -> f a -> f b
Prelude.<$> Maybe (Map Text (Value Text))
additionalEncryptionContext,
Key -> CookieSynchronizationConfigurationProperty -> (Key, Value)
forall v. ToJSON v => Key -> v -> (Key, Value)
forall e kv v. (KeyValue e kv, ToJSON v) => Key -> v -> kv
(JSON..=) Key
"CookieSynchronizationConfiguration"
(CookieSynchronizationConfigurationProperty -> (Key, Value))
-> Maybe CookieSynchronizationConfigurationProperty
-> Maybe (Key, Value)
forall (f :: * -> *) a b. Functor f => (a -> b) -> f a -> f b
Prelude.<$> Maybe CookieSynchronizationConfigurationProperty
cookieSynchronizationConfiguration,
Key -> Value Text -> (Key, Value)
forall v. ToJSON v => Key -> v -> (Key, Value)
forall e kv v. (KeyValue e kv, ToJSON v) => Key -> v -> kv
(JSON..=) Key
"CustomerManagedKey" (Value Text -> (Key, Value))
-> Maybe (Value Text) -> Maybe (Key, Value)
forall (f :: * -> *) a b. Functor f => (a -> b) -> f a -> f b
Prelude.<$> Maybe (Value Text)
customerManagedKey,
Key -> Value Text -> (Key, Value)
forall v. ToJSON v => Key -> v -> (Key, Value)
forall e kv v. (KeyValue e kv, ToJSON v) => Key -> v -> kv
(JSON..=) Key
"DeepLinkAllowed" (Value Text -> (Key, Value))
-> Maybe (Value Text) -> Maybe (Key, Value)
forall (f :: * -> *) a b. Functor f => (a -> b) -> f a -> f b
Prelude.<$> Maybe (Value Text)
deepLinkAllowed,
Key -> Value Double -> (Key, Value)
forall v. ToJSON v => Key -> v -> (Key, Value)
forall e kv v. (KeyValue e kv, ToJSON v) => Key -> v -> kv
(JSON..=) Key
"DisconnectTimeoutInMinutes"
(Value Double -> (Key, Value))
-> Maybe (Value Double) -> Maybe (Key, Value)
forall (f :: * -> *) a b. Functor f => (a -> b) -> f a -> f b
Prelude.<$> Maybe (Value Double)
disconnectTimeoutInMinutes,
Key -> Value Double -> (Key, Value)
forall v. ToJSON v => Key -> v -> (Key, Value)
forall e kv v. (KeyValue e kv, ToJSON v) => Key -> v -> kv
(JSON..=) Key
"IdleDisconnectTimeoutInMinutes"
(Value Double -> (Key, Value))
-> Maybe (Value Double) -> Maybe (Key, Value)
forall (f :: * -> *) a b. Functor f => (a -> b) -> f a -> f b
Prelude.<$> Maybe (Value Double)
idleDisconnectTimeoutInMinutes,
Key -> [Tag] -> (Key, Value)
forall v. ToJSON v => Key -> v -> (Key, Value)
forall e kv v. (KeyValue e kv, ToJSON v) => Key -> v -> kv
(JSON..=) Key
"Tags" ([Tag] -> (Key, Value)) -> Maybe [Tag] -> Maybe (Key, Value)
forall (f :: * -> *) a b. Functor f => (a -> b) -> f a -> f b
Prelude.<$> Maybe [Tag]
tags,
Key -> ToolbarConfigurationProperty -> (Key, Value)
forall v. ToJSON v => Key -> v -> (Key, Value)
forall e kv v. (KeyValue e kv, ToJSON v) => Key -> v -> kv
(JSON..=) Key
"ToolbarConfiguration"
(ToolbarConfigurationProperty -> (Key, Value))
-> Maybe ToolbarConfigurationProperty -> Maybe (Key, Value)
forall (f :: * -> *) a b. Functor f => (a -> b) -> f a -> f b
Prelude.<$> Maybe ToolbarConfigurationProperty
toolbarConfiguration]))}
instance JSON.ToJSON UserSettings where
toJSON :: UserSettings -> Value
toJSON UserSettings {Maybe [Tag]
Maybe (Map Text (Value Text))
Maybe (Value Double)
Maybe (Value Text)
Maybe CookieSynchronizationConfigurationProperty
Maybe ToolbarConfigurationProperty
()
Value Text
haddock_workaround_ :: UserSettings -> ()
additionalEncryptionContext :: UserSettings -> Maybe (Map Text (Value Text))
cookieSynchronizationConfiguration :: UserSettings -> Maybe CookieSynchronizationConfigurationProperty
copyAllowed :: UserSettings -> Value Text
customerManagedKey :: UserSettings -> Maybe (Value Text)
deepLinkAllowed :: UserSettings -> Maybe (Value Text)
disconnectTimeoutInMinutes :: UserSettings -> Maybe (Value Double)
downloadAllowed :: UserSettings -> Value Text
idleDisconnectTimeoutInMinutes :: UserSettings -> Maybe (Value Double)
pasteAllowed :: UserSettings -> Value Text
printAllowed :: UserSettings -> Value Text
tags :: UserSettings -> Maybe [Tag]
toolbarConfiguration :: UserSettings -> Maybe ToolbarConfigurationProperty
uploadAllowed :: UserSettings -> Value Text
haddock_workaround_ :: ()
additionalEncryptionContext :: Maybe (Map Text (Value Text))
cookieSynchronizationConfiguration :: Maybe CookieSynchronizationConfigurationProperty
copyAllowed :: Value Text
customerManagedKey :: Maybe (Value Text)
deepLinkAllowed :: Maybe (Value Text)
disconnectTimeoutInMinutes :: Maybe (Value Double)
downloadAllowed :: Value Text
idleDisconnectTimeoutInMinutes :: Maybe (Value Double)
pasteAllowed :: Value Text
printAllowed :: Value Text
tags :: Maybe [Tag]
toolbarConfiguration :: Maybe ToolbarConfigurationProperty
uploadAllowed :: Value Text
..}
= [(Key, Value)] -> Value
JSON.object
([Item [(Key, Value)]] -> [(Key, Value)]
forall l. IsList l => [Item l] -> l
Prelude.fromList
([(Key, Value)] -> [(Key, Value)] -> [(Key, Value)]
forall a. Semigroup a => a -> a -> a
(Prelude.<>)
[Key
"CopyAllowed" Key -> Value Text -> (Key, Value)
forall v. ToJSON v => Key -> v -> (Key, Value)
forall e kv v. (KeyValue e kv, ToJSON v) => Key -> v -> kv
JSON..= Value Text
copyAllowed,
Key
"DownloadAllowed" Key -> Value Text -> (Key, Value)
forall v. ToJSON v => Key -> v -> (Key, Value)
forall e kv v. (KeyValue e kv, ToJSON v) => Key -> v -> kv
JSON..= Value Text
downloadAllowed,
Key
"PasteAllowed" Key -> Value Text -> (Key, Value)
forall v. ToJSON v => Key -> v -> (Key, Value)
forall e kv v. (KeyValue e kv, ToJSON v) => Key -> v -> kv
JSON..= Value Text
pasteAllowed,
Key
"PrintAllowed" Key -> Value Text -> (Key, Value)
forall v. ToJSON v => Key -> v -> (Key, Value)
forall e kv v. (KeyValue e kv, ToJSON v) => Key -> v -> kv
JSON..= Value Text
printAllowed,
Key
"UploadAllowed" Key -> Value Text -> (Key, Value)
forall v. ToJSON v => Key -> v -> (Key, Value)
forall e kv v. (KeyValue e kv, ToJSON v) => Key -> v -> kv
JSON..= Value Text
uploadAllowed]
([Maybe (Key, Value)] -> [(Key, Value)]
forall a. [Maybe a] -> [a]
Prelude.catMaybes
[Key -> Map Text (Value Text) -> (Key, Value)
forall v. ToJSON v => Key -> v -> (Key, Value)
forall e kv v. (KeyValue e kv, ToJSON v) => Key -> v -> kv
(JSON..=) Key
"AdditionalEncryptionContext"
(Map Text (Value Text) -> (Key, Value))
-> Maybe (Map Text (Value Text)) -> Maybe (Key, Value)
forall (f :: * -> *) a b. Functor f => (a -> b) -> f a -> f b
Prelude.<$> Maybe (Map Text (Value Text))
additionalEncryptionContext,
Key -> CookieSynchronizationConfigurationProperty -> (Key, Value)
forall v. ToJSON v => Key -> v -> (Key, Value)
forall e kv v. (KeyValue e kv, ToJSON v) => Key -> v -> kv
(JSON..=) Key
"CookieSynchronizationConfiguration"
(CookieSynchronizationConfigurationProperty -> (Key, Value))
-> Maybe CookieSynchronizationConfigurationProperty
-> Maybe (Key, Value)
forall (f :: * -> *) a b. Functor f => (a -> b) -> f a -> f b
Prelude.<$> Maybe CookieSynchronizationConfigurationProperty
cookieSynchronizationConfiguration,
Key -> Value Text -> (Key, Value)
forall v. ToJSON v => Key -> v -> (Key, Value)
forall e kv v. (KeyValue e kv, ToJSON v) => Key -> v -> kv
(JSON..=) Key
"CustomerManagedKey" (Value Text -> (Key, Value))
-> Maybe (Value Text) -> Maybe (Key, Value)
forall (f :: * -> *) a b. Functor f => (a -> b) -> f a -> f b
Prelude.<$> Maybe (Value Text)
customerManagedKey,
Key -> Value Text -> (Key, Value)
forall v. ToJSON v => Key -> v -> (Key, Value)
forall e kv v. (KeyValue e kv, ToJSON v) => Key -> v -> kv
(JSON..=) Key
"DeepLinkAllowed" (Value Text -> (Key, Value))
-> Maybe (Value Text) -> Maybe (Key, Value)
forall (f :: * -> *) a b. Functor f => (a -> b) -> f a -> f b
Prelude.<$> Maybe (Value Text)
deepLinkAllowed,
Key -> Value Double -> (Key, Value)
forall v. ToJSON v => Key -> v -> (Key, Value)
forall e kv v. (KeyValue e kv, ToJSON v) => Key -> v -> kv
(JSON..=) Key
"DisconnectTimeoutInMinutes"
(Value Double -> (Key, Value))
-> Maybe (Value Double) -> Maybe (Key, Value)
forall (f :: * -> *) a b. Functor f => (a -> b) -> f a -> f b
Prelude.<$> Maybe (Value Double)
disconnectTimeoutInMinutes,
Key -> Value Double -> (Key, Value)
forall v. ToJSON v => Key -> v -> (Key, Value)
forall e kv v. (KeyValue e kv, ToJSON v) => Key -> v -> kv
(JSON..=) Key
"IdleDisconnectTimeoutInMinutes"
(Value Double -> (Key, Value))
-> Maybe (Value Double) -> Maybe (Key, Value)
forall (f :: * -> *) a b. Functor f => (a -> b) -> f a -> f b
Prelude.<$> Maybe (Value Double)
idleDisconnectTimeoutInMinutes,
Key -> [Tag] -> (Key, Value)
forall v. ToJSON v => Key -> v -> (Key, Value)
forall e kv v. (KeyValue e kv, ToJSON v) => Key -> v -> kv
(JSON..=) Key
"Tags" ([Tag] -> (Key, Value)) -> Maybe [Tag] -> Maybe (Key, Value)
forall (f :: * -> *) a b. Functor f => (a -> b) -> f a -> f b
Prelude.<$> Maybe [Tag]
tags,
Key -> ToolbarConfigurationProperty -> (Key, Value)
forall v. ToJSON v => Key -> v -> (Key, Value)
forall e kv v. (KeyValue e kv, ToJSON v) => Key -> v -> kv
(JSON..=) Key
"ToolbarConfiguration"
(ToolbarConfigurationProperty -> (Key, Value))
-> Maybe ToolbarConfigurationProperty -> Maybe (Key, Value)
forall (f :: * -> *) a b. Functor f => (a -> b) -> f a -> f b
Prelude.<$> Maybe ToolbarConfigurationProperty
toolbarConfiguration])))
instance Property "AdditionalEncryptionContext" UserSettings where
type PropertyType "AdditionalEncryptionContext" UserSettings = Prelude.Map Prelude.Text (Value Prelude.Text)
set :: PropertyType "AdditionalEncryptionContext" UserSettings
-> UserSettings -> UserSettings
set PropertyType "AdditionalEncryptionContext" UserSettings
newValue UserSettings {Maybe [Tag]
Maybe (Map Text (Value Text))
Maybe (Value Double)
Maybe (Value Text)
Maybe CookieSynchronizationConfigurationProperty
Maybe ToolbarConfigurationProperty
()
Value Text
haddock_workaround_ :: UserSettings -> ()
additionalEncryptionContext :: UserSettings -> Maybe (Map Text (Value Text))
cookieSynchronizationConfiguration :: UserSettings -> Maybe CookieSynchronizationConfigurationProperty
copyAllowed :: UserSettings -> Value Text
customerManagedKey :: UserSettings -> Maybe (Value Text)
deepLinkAllowed :: UserSettings -> Maybe (Value Text)
disconnectTimeoutInMinutes :: UserSettings -> Maybe (Value Double)
downloadAllowed :: UserSettings -> Value Text
idleDisconnectTimeoutInMinutes :: UserSettings -> Maybe (Value Double)
pasteAllowed :: UserSettings -> Value Text
printAllowed :: UserSettings -> Value Text
tags :: UserSettings -> Maybe [Tag]
toolbarConfiguration :: UserSettings -> Maybe ToolbarConfigurationProperty
uploadAllowed :: UserSettings -> Value Text
haddock_workaround_ :: ()
additionalEncryptionContext :: Maybe (Map Text (Value Text))
cookieSynchronizationConfiguration :: Maybe CookieSynchronizationConfigurationProperty
copyAllowed :: Value Text
customerManagedKey :: Maybe (Value Text)
deepLinkAllowed :: Maybe (Value Text)
disconnectTimeoutInMinutes :: Maybe (Value Double)
downloadAllowed :: Value Text
idleDisconnectTimeoutInMinutes :: Maybe (Value Double)
pasteAllowed :: Value Text
printAllowed :: Value Text
tags :: Maybe [Tag]
toolbarConfiguration :: Maybe ToolbarConfigurationProperty
uploadAllowed :: Value Text
..}
= UserSettings
{additionalEncryptionContext :: Maybe (Map Text (Value Text))
additionalEncryptionContext = Map Text (Value Text) -> Maybe (Map Text (Value Text))
forall a. a -> Maybe a
forall (f :: * -> *) a. Applicative f => a -> f a
Prelude.pure Map Text (Value Text)
PropertyType "AdditionalEncryptionContext" UserSettings
newValue, Maybe [Tag]
Maybe (Value Double)
Maybe (Value Text)
Maybe CookieSynchronizationConfigurationProperty
Maybe ToolbarConfigurationProperty
()
Value Text
haddock_workaround_ :: ()
cookieSynchronizationConfiguration :: Maybe CookieSynchronizationConfigurationProperty
copyAllowed :: Value Text
customerManagedKey :: Maybe (Value Text)
deepLinkAllowed :: Maybe (Value Text)
disconnectTimeoutInMinutes :: Maybe (Value Double)
downloadAllowed :: Value Text
idleDisconnectTimeoutInMinutes :: Maybe (Value Double)
pasteAllowed :: Value Text
printAllowed :: Value Text
tags :: Maybe [Tag]
toolbarConfiguration :: Maybe ToolbarConfigurationProperty
uploadAllowed :: Value Text
haddock_workaround_ :: ()
cookieSynchronizationConfiguration :: Maybe CookieSynchronizationConfigurationProperty
copyAllowed :: Value Text
customerManagedKey :: Maybe (Value Text)
deepLinkAllowed :: Maybe (Value Text)
disconnectTimeoutInMinutes :: Maybe (Value Double)
downloadAllowed :: Value Text
idleDisconnectTimeoutInMinutes :: Maybe (Value Double)
pasteAllowed :: Value Text
printAllowed :: Value Text
tags :: Maybe [Tag]
toolbarConfiguration :: Maybe ToolbarConfigurationProperty
uploadAllowed :: Value Text
..}
instance Property "CookieSynchronizationConfiguration" UserSettings where
type PropertyType "CookieSynchronizationConfiguration" UserSettings = CookieSynchronizationConfigurationProperty
set :: PropertyType "CookieSynchronizationConfiguration" UserSettings
-> UserSettings -> UserSettings
set PropertyType "CookieSynchronizationConfiguration" UserSettings
newValue UserSettings {Maybe [Tag]
Maybe (Map Text (Value Text))
Maybe (Value Double)
Maybe (Value Text)
Maybe CookieSynchronizationConfigurationProperty
Maybe ToolbarConfigurationProperty
()
Value Text
haddock_workaround_ :: UserSettings -> ()
additionalEncryptionContext :: UserSettings -> Maybe (Map Text (Value Text))
cookieSynchronizationConfiguration :: UserSettings -> Maybe CookieSynchronizationConfigurationProperty
copyAllowed :: UserSettings -> Value Text
customerManagedKey :: UserSettings -> Maybe (Value Text)
deepLinkAllowed :: UserSettings -> Maybe (Value Text)
disconnectTimeoutInMinutes :: UserSettings -> Maybe (Value Double)
downloadAllowed :: UserSettings -> Value Text
idleDisconnectTimeoutInMinutes :: UserSettings -> Maybe (Value Double)
pasteAllowed :: UserSettings -> Value Text
printAllowed :: UserSettings -> Value Text
tags :: UserSettings -> Maybe [Tag]
toolbarConfiguration :: UserSettings -> Maybe ToolbarConfigurationProperty
uploadAllowed :: UserSettings -> Value Text
haddock_workaround_ :: ()
additionalEncryptionContext :: Maybe (Map Text (Value Text))
cookieSynchronizationConfiguration :: Maybe CookieSynchronizationConfigurationProperty
copyAllowed :: Value Text
customerManagedKey :: Maybe (Value Text)
deepLinkAllowed :: Maybe (Value Text)
disconnectTimeoutInMinutes :: Maybe (Value Double)
downloadAllowed :: Value Text
idleDisconnectTimeoutInMinutes :: Maybe (Value Double)
pasteAllowed :: Value Text
printAllowed :: Value Text
tags :: Maybe [Tag]
toolbarConfiguration :: Maybe ToolbarConfigurationProperty
uploadAllowed :: Value Text
..}
= UserSettings
{cookieSynchronizationConfiguration :: Maybe CookieSynchronizationConfigurationProperty
cookieSynchronizationConfiguration = CookieSynchronizationConfigurationProperty
-> Maybe CookieSynchronizationConfigurationProperty
forall a. a -> Maybe a
forall (f :: * -> *) a. Applicative f => a -> f a
Prelude.pure PropertyType "CookieSynchronizationConfiguration" UserSettings
CookieSynchronizationConfigurationProperty
newValue, Maybe [Tag]
Maybe (Map Text (Value Text))
Maybe (Value Double)
Maybe (Value Text)
Maybe ToolbarConfigurationProperty
()
Value Text
haddock_workaround_ :: ()
additionalEncryptionContext :: Maybe (Map Text (Value Text))
copyAllowed :: Value Text
customerManagedKey :: Maybe (Value Text)
deepLinkAllowed :: Maybe (Value Text)
disconnectTimeoutInMinutes :: Maybe (Value Double)
downloadAllowed :: Value Text
idleDisconnectTimeoutInMinutes :: Maybe (Value Double)
pasteAllowed :: Value Text
printAllowed :: Value Text
tags :: Maybe [Tag]
toolbarConfiguration :: Maybe ToolbarConfigurationProperty
uploadAllowed :: Value Text
haddock_workaround_ :: ()
additionalEncryptionContext :: Maybe (Map Text (Value Text))
copyAllowed :: Value Text
customerManagedKey :: Maybe (Value Text)
deepLinkAllowed :: Maybe (Value Text)
disconnectTimeoutInMinutes :: Maybe (Value Double)
downloadAllowed :: Value Text
idleDisconnectTimeoutInMinutes :: Maybe (Value Double)
pasteAllowed :: Value Text
printAllowed :: Value Text
tags :: Maybe [Tag]
toolbarConfiguration :: Maybe ToolbarConfigurationProperty
uploadAllowed :: Value Text
..}
instance Property "CopyAllowed" UserSettings where
type PropertyType "CopyAllowed" UserSettings = Value Prelude.Text
set :: PropertyType "CopyAllowed" UserSettings
-> UserSettings -> UserSettings
set PropertyType "CopyAllowed" UserSettings
newValue UserSettings {Maybe [Tag]
Maybe (Map Text (Value Text))
Maybe (Value Double)
Maybe (Value Text)
Maybe CookieSynchronizationConfigurationProperty
Maybe ToolbarConfigurationProperty
()
Value Text
haddock_workaround_ :: UserSettings -> ()
additionalEncryptionContext :: UserSettings -> Maybe (Map Text (Value Text))
cookieSynchronizationConfiguration :: UserSettings -> Maybe CookieSynchronizationConfigurationProperty
copyAllowed :: UserSettings -> Value Text
customerManagedKey :: UserSettings -> Maybe (Value Text)
deepLinkAllowed :: UserSettings -> Maybe (Value Text)
disconnectTimeoutInMinutes :: UserSettings -> Maybe (Value Double)
downloadAllowed :: UserSettings -> Value Text
idleDisconnectTimeoutInMinutes :: UserSettings -> Maybe (Value Double)
pasteAllowed :: UserSettings -> Value Text
printAllowed :: UserSettings -> Value Text
tags :: UserSettings -> Maybe [Tag]
toolbarConfiguration :: UserSettings -> Maybe ToolbarConfigurationProperty
uploadAllowed :: UserSettings -> Value Text
haddock_workaround_ :: ()
additionalEncryptionContext :: Maybe (Map Text (Value Text))
cookieSynchronizationConfiguration :: Maybe CookieSynchronizationConfigurationProperty
copyAllowed :: Value Text
customerManagedKey :: Maybe (Value Text)
deepLinkAllowed :: Maybe (Value Text)
disconnectTimeoutInMinutes :: Maybe (Value Double)
downloadAllowed :: Value Text
idleDisconnectTimeoutInMinutes :: Maybe (Value Double)
pasteAllowed :: Value Text
printAllowed :: Value Text
tags :: Maybe [Tag]
toolbarConfiguration :: Maybe ToolbarConfigurationProperty
uploadAllowed :: Value Text
..}
= UserSettings {copyAllowed :: Value Text
copyAllowed = PropertyType "CopyAllowed" UserSettings
Value Text
newValue, Maybe [Tag]
Maybe (Map Text (Value Text))
Maybe (Value Double)
Maybe (Value Text)
Maybe CookieSynchronizationConfigurationProperty
Maybe ToolbarConfigurationProperty
()
Value Text
haddock_workaround_ :: ()
additionalEncryptionContext :: Maybe (Map Text (Value Text))
cookieSynchronizationConfiguration :: Maybe CookieSynchronizationConfigurationProperty
customerManagedKey :: Maybe (Value Text)
deepLinkAllowed :: Maybe (Value Text)
disconnectTimeoutInMinutes :: Maybe (Value Double)
downloadAllowed :: Value Text
idleDisconnectTimeoutInMinutes :: Maybe (Value Double)
pasteAllowed :: Value Text
printAllowed :: Value Text
tags :: Maybe [Tag]
toolbarConfiguration :: Maybe ToolbarConfigurationProperty
uploadAllowed :: Value Text
haddock_workaround_ :: ()
additionalEncryptionContext :: Maybe (Map Text (Value Text))
cookieSynchronizationConfiguration :: Maybe CookieSynchronizationConfigurationProperty
customerManagedKey :: Maybe (Value Text)
deepLinkAllowed :: Maybe (Value Text)
disconnectTimeoutInMinutes :: Maybe (Value Double)
downloadAllowed :: Value Text
idleDisconnectTimeoutInMinutes :: Maybe (Value Double)
pasteAllowed :: Value Text
printAllowed :: Value Text
tags :: Maybe [Tag]
toolbarConfiguration :: Maybe ToolbarConfigurationProperty
uploadAllowed :: Value Text
..}
instance Property "CustomerManagedKey" UserSettings where
type PropertyType "CustomerManagedKey" UserSettings = Value Prelude.Text
set :: PropertyType "CustomerManagedKey" UserSettings
-> UserSettings -> UserSettings
set PropertyType "CustomerManagedKey" UserSettings
newValue UserSettings {Maybe [Tag]
Maybe (Map Text (Value Text))
Maybe (Value Double)
Maybe (Value Text)
Maybe CookieSynchronizationConfigurationProperty
Maybe ToolbarConfigurationProperty
()
Value Text
haddock_workaround_ :: UserSettings -> ()
additionalEncryptionContext :: UserSettings -> Maybe (Map Text (Value Text))
cookieSynchronizationConfiguration :: UserSettings -> Maybe CookieSynchronizationConfigurationProperty
copyAllowed :: UserSettings -> Value Text
customerManagedKey :: UserSettings -> Maybe (Value Text)
deepLinkAllowed :: UserSettings -> Maybe (Value Text)
disconnectTimeoutInMinutes :: UserSettings -> Maybe (Value Double)
downloadAllowed :: UserSettings -> Value Text
idleDisconnectTimeoutInMinutes :: UserSettings -> Maybe (Value Double)
pasteAllowed :: UserSettings -> Value Text
printAllowed :: UserSettings -> Value Text
tags :: UserSettings -> Maybe [Tag]
toolbarConfiguration :: UserSettings -> Maybe ToolbarConfigurationProperty
uploadAllowed :: UserSettings -> Value Text
haddock_workaround_ :: ()
additionalEncryptionContext :: Maybe (Map Text (Value Text))
cookieSynchronizationConfiguration :: Maybe CookieSynchronizationConfigurationProperty
copyAllowed :: Value Text
customerManagedKey :: Maybe (Value Text)
deepLinkAllowed :: Maybe (Value Text)
disconnectTimeoutInMinutes :: Maybe (Value Double)
downloadAllowed :: Value Text
idleDisconnectTimeoutInMinutes :: Maybe (Value Double)
pasteAllowed :: Value Text
printAllowed :: Value Text
tags :: Maybe [Tag]
toolbarConfiguration :: Maybe ToolbarConfigurationProperty
uploadAllowed :: Value Text
..}
= UserSettings {customerManagedKey :: Maybe (Value Text)
customerManagedKey = Value Text -> Maybe (Value Text)
forall a. a -> Maybe a
forall (f :: * -> *) a. Applicative f => a -> f a
Prelude.pure PropertyType "CustomerManagedKey" UserSettings
Value Text
newValue, Maybe [Tag]
Maybe (Map Text (Value Text))
Maybe (Value Double)
Maybe (Value Text)
Maybe CookieSynchronizationConfigurationProperty
Maybe ToolbarConfigurationProperty
()
Value Text
haddock_workaround_ :: ()
additionalEncryptionContext :: Maybe (Map Text (Value Text))
cookieSynchronizationConfiguration :: Maybe CookieSynchronizationConfigurationProperty
copyAllowed :: Value Text
deepLinkAllowed :: Maybe (Value Text)
disconnectTimeoutInMinutes :: Maybe (Value Double)
downloadAllowed :: Value Text
idleDisconnectTimeoutInMinutes :: Maybe (Value Double)
pasteAllowed :: Value Text
printAllowed :: Value Text
tags :: Maybe [Tag]
toolbarConfiguration :: Maybe ToolbarConfigurationProperty
uploadAllowed :: Value Text
haddock_workaround_ :: ()
additionalEncryptionContext :: Maybe (Map Text (Value Text))
cookieSynchronizationConfiguration :: Maybe CookieSynchronizationConfigurationProperty
copyAllowed :: Value Text
deepLinkAllowed :: Maybe (Value Text)
disconnectTimeoutInMinutes :: Maybe (Value Double)
downloadAllowed :: Value Text
idleDisconnectTimeoutInMinutes :: Maybe (Value Double)
pasteAllowed :: Value Text
printAllowed :: Value Text
tags :: Maybe [Tag]
toolbarConfiguration :: Maybe ToolbarConfigurationProperty
uploadAllowed :: Value Text
..}
instance Property "DeepLinkAllowed" UserSettings where
type PropertyType "DeepLinkAllowed" UserSettings = Value Prelude.Text
set :: PropertyType "DeepLinkAllowed" UserSettings
-> UserSettings -> UserSettings
set PropertyType "DeepLinkAllowed" UserSettings
newValue UserSettings {Maybe [Tag]
Maybe (Map Text (Value Text))
Maybe (Value Double)
Maybe (Value Text)
Maybe CookieSynchronizationConfigurationProperty
Maybe ToolbarConfigurationProperty
()
Value Text
haddock_workaround_ :: UserSettings -> ()
additionalEncryptionContext :: UserSettings -> Maybe (Map Text (Value Text))
cookieSynchronizationConfiguration :: UserSettings -> Maybe CookieSynchronizationConfigurationProperty
copyAllowed :: UserSettings -> Value Text
customerManagedKey :: UserSettings -> Maybe (Value Text)
deepLinkAllowed :: UserSettings -> Maybe (Value Text)
disconnectTimeoutInMinutes :: UserSettings -> Maybe (Value Double)
downloadAllowed :: UserSettings -> Value Text
idleDisconnectTimeoutInMinutes :: UserSettings -> Maybe (Value Double)
pasteAllowed :: UserSettings -> Value Text
printAllowed :: UserSettings -> Value Text
tags :: UserSettings -> Maybe [Tag]
toolbarConfiguration :: UserSettings -> Maybe ToolbarConfigurationProperty
uploadAllowed :: UserSettings -> Value Text
haddock_workaround_ :: ()
additionalEncryptionContext :: Maybe (Map Text (Value Text))
cookieSynchronizationConfiguration :: Maybe CookieSynchronizationConfigurationProperty
copyAllowed :: Value Text
customerManagedKey :: Maybe (Value Text)
deepLinkAllowed :: Maybe (Value Text)
disconnectTimeoutInMinutes :: Maybe (Value Double)
downloadAllowed :: Value Text
idleDisconnectTimeoutInMinutes :: Maybe (Value Double)
pasteAllowed :: Value Text
printAllowed :: Value Text
tags :: Maybe [Tag]
toolbarConfiguration :: Maybe ToolbarConfigurationProperty
uploadAllowed :: Value Text
..}
= UserSettings {deepLinkAllowed :: Maybe (Value Text)
deepLinkAllowed = Value Text -> Maybe (Value Text)
forall a. a -> Maybe a
forall (f :: * -> *) a. Applicative f => a -> f a
Prelude.pure PropertyType "DeepLinkAllowed" UserSettings
Value Text
newValue, Maybe [Tag]
Maybe (Map Text (Value Text))
Maybe (Value Double)
Maybe (Value Text)
Maybe CookieSynchronizationConfigurationProperty
Maybe ToolbarConfigurationProperty
()
Value Text
haddock_workaround_ :: ()
additionalEncryptionContext :: Maybe (Map Text (Value Text))
cookieSynchronizationConfiguration :: Maybe CookieSynchronizationConfigurationProperty
copyAllowed :: Value Text
customerManagedKey :: Maybe (Value Text)
disconnectTimeoutInMinutes :: Maybe (Value Double)
downloadAllowed :: Value Text
idleDisconnectTimeoutInMinutes :: Maybe (Value Double)
pasteAllowed :: Value Text
printAllowed :: Value Text
tags :: Maybe [Tag]
toolbarConfiguration :: Maybe ToolbarConfigurationProperty
uploadAllowed :: Value Text
haddock_workaround_ :: ()
additionalEncryptionContext :: Maybe (Map Text (Value Text))
cookieSynchronizationConfiguration :: Maybe CookieSynchronizationConfigurationProperty
copyAllowed :: Value Text
customerManagedKey :: Maybe (Value Text)
disconnectTimeoutInMinutes :: Maybe (Value Double)
downloadAllowed :: Value Text
idleDisconnectTimeoutInMinutes :: Maybe (Value Double)
pasteAllowed :: Value Text
printAllowed :: Value Text
tags :: Maybe [Tag]
toolbarConfiguration :: Maybe ToolbarConfigurationProperty
uploadAllowed :: Value Text
..}
instance Property "DisconnectTimeoutInMinutes" UserSettings where
type PropertyType "DisconnectTimeoutInMinutes" UserSettings = Value Prelude.Double
set :: PropertyType "DisconnectTimeoutInMinutes" UserSettings
-> UserSettings -> UserSettings
set PropertyType "DisconnectTimeoutInMinutes" UserSettings
newValue UserSettings {Maybe [Tag]
Maybe (Map Text (Value Text))
Maybe (Value Double)
Maybe (Value Text)
Maybe CookieSynchronizationConfigurationProperty
Maybe ToolbarConfigurationProperty
()
Value Text
haddock_workaround_ :: UserSettings -> ()
additionalEncryptionContext :: UserSettings -> Maybe (Map Text (Value Text))
cookieSynchronizationConfiguration :: UserSettings -> Maybe CookieSynchronizationConfigurationProperty
copyAllowed :: UserSettings -> Value Text
customerManagedKey :: UserSettings -> Maybe (Value Text)
deepLinkAllowed :: UserSettings -> Maybe (Value Text)
disconnectTimeoutInMinutes :: UserSettings -> Maybe (Value Double)
downloadAllowed :: UserSettings -> Value Text
idleDisconnectTimeoutInMinutes :: UserSettings -> Maybe (Value Double)
pasteAllowed :: UserSettings -> Value Text
printAllowed :: UserSettings -> Value Text
tags :: UserSettings -> Maybe [Tag]
toolbarConfiguration :: UserSettings -> Maybe ToolbarConfigurationProperty
uploadAllowed :: UserSettings -> Value Text
haddock_workaround_ :: ()
additionalEncryptionContext :: Maybe (Map Text (Value Text))
cookieSynchronizationConfiguration :: Maybe CookieSynchronizationConfigurationProperty
copyAllowed :: Value Text
customerManagedKey :: Maybe (Value Text)
deepLinkAllowed :: Maybe (Value Text)
disconnectTimeoutInMinutes :: Maybe (Value Double)
downloadAllowed :: Value Text
idleDisconnectTimeoutInMinutes :: Maybe (Value Double)
pasteAllowed :: Value Text
printAllowed :: Value Text
tags :: Maybe [Tag]
toolbarConfiguration :: Maybe ToolbarConfigurationProperty
uploadAllowed :: Value Text
..}
= UserSettings
{disconnectTimeoutInMinutes :: Maybe (Value Double)
disconnectTimeoutInMinutes = Value Double -> Maybe (Value Double)
forall a. a -> Maybe a
forall (f :: * -> *) a. Applicative f => a -> f a
Prelude.pure PropertyType "DisconnectTimeoutInMinutes" UserSettings
Value Double
newValue, Maybe [Tag]
Maybe (Map Text (Value Text))
Maybe (Value Double)
Maybe (Value Text)
Maybe CookieSynchronizationConfigurationProperty
Maybe ToolbarConfigurationProperty
()
Value Text
haddock_workaround_ :: ()
additionalEncryptionContext :: Maybe (Map Text (Value Text))
cookieSynchronizationConfiguration :: Maybe CookieSynchronizationConfigurationProperty
copyAllowed :: Value Text
customerManagedKey :: Maybe (Value Text)
deepLinkAllowed :: Maybe (Value Text)
downloadAllowed :: Value Text
idleDisconnectTimeoutInMinutes :: Maybe (Value Double)
pasteAllowed :: Value Text
printAllowed :: Value Text
tags :: Maybe [Tag]
toolbarConfiguration :: Maybe ToolbarConfigurationProperty
uploadAllowed :: Value Text
haddock_workaround_ :: ()
additionalEncryptionContext :: Maybe (Map Text (Value Text))
cookieSynchronizationConfiguration :: Maybe CookieSynchronizationConfigurationProperty
copyAllowed :: Value Text
customerManagedKey :: Maybe (Value Text)
deepLinkAllowed :: Maybe (Value Text)
downloadAllowed :: Value Text
idleDisconnectTimeoutInMinutes :: Maybe (Value Double)
pasteAllowed :: Value Text
printAllowed :: Value Text
tags :: Maybe [Tag]
toolbarConfiguration :: Maybe ToolbarConfigurationProperty
uploadAllowed :: Value Text
..}
instance Property "DownloadAllowed" UserSettings where
type PropertyType "DownloadAllowed" UserSettings = Value Prelude.Text
set :: PropertyType "DownloadAllowed" UserSettings
-> UserSettings -> UserSettings
set PropertyType "DownloadAllowed" UserSettings
newValue UserSettings {Maybe [Tag]
Maybe (Map Text (Value Text))
Maybe (Value Double)
Maybe (Value Text)
Maybe CookieSynchronizationConfigurationProperty
Maybe ToolbarConfigurationProperty
()
Value Text
haddock_workaround_ :: UserSettings -> ()
additionalEncryptionContext :: UserSettings -> Maybe (Map Text (Value Text))
cookieSynchronizationConfiguration :: UserSettings -> Maybe CookieSynchronizationConfigurationProperty
copyAllowed :: UserSettings -> Value Text
customerManagedKey :: UserSettings -> Maybe (Value Text)
deepLinkAllowed :: UserSettings -> Maybe (Value Text)
disconnectTimeoutInMinutes :: UserSettings -> Maybe (Value Double)
downloadAllowed :: UserSettings -> Value Text
idleDisconnectTimeoutInMinutes :: UserSettings -> Maybe (Value Double)
pasteAllowed :: UserSettings -> Value Text
printAllowed :: UserSettings -> Value Text
tags :: UserSettings -> Maybe [Tag]
toolbarConfiguration :: UserSettings -> Maybe ToolbarConfigurationProperty
uploadAllowed :: UserSettings -> Value Text
haddock_workaround_ :: ()
additionalEncryptionContext :: Maybe (Map Text (Value Text))
cookieSynchronizationConfiguration :: Maybe CookieSynchronizationConfigurationProperty
copyAllowed :: Value Text
customerManagedKey :: Maybe (Value Text)
deepLinkAllowed :: Maybe (Value Text)
disconnectTimeoutInMinutes :: Maybe (Value Double)
downloadAllowed :: Value Text
idleDisconnectTimeoutInMinutes :: Maybe (Value Double)
pasteAllowed :: Value Text
printAllowed :: Value Text
tags :: Maybe [Tag]
toolbarConfiguration :: Maybe ToolbarConfigurationProperty
uploadAllowed :: Value Text
..}
= UserSettings {downloadAllowed :: Value Text
downloadAllowed = PropertyType "DownloadAllowed" UserSettings
Value Text
newValue, Maybe [Tag]
Maybe (Map Text (Value Text))
Maybe (Value Double)
Maybe (Value Text)
Maybe CookieSynchronizationConfigurationProperty
Maybe ToolbarConfigurationProperty
()
Value Text
haddock_workaround_ :: ()
additionalEncryptionContext :: Maybe (Map Text (Value Text))
cookieSynchronizationConfiguration :: Maybe CookieSynchronizationConfigurationProperty
copyAllowed :: Value Text
customerManagedKey :: Maybe (Value Text)
deepLinkAllowed :: Maybe (Value Text)
disconnectTimeoutInMinutes :: Maybe (Value Double)
idleDisconnectTimeoutInMinutes :: Maybe (Value Double)
pasteAllowed :: Value Text
printAllowed :: Value Text
tags :: Maybe [Tag]
toolbarConfiguration :: Maybe ToolbarConfigurationProperty
uploadAllowed :: Value Text
haddock_workaround_ :: ()
additionalEncryptionContext :: Maybe (Map Text (Value Text))
cookieSynchronizationConfiguration :: Maybe CookieSynchronizationConfigurationProperty
copyAllowed :: Value Text
customerManagedKey :: Maybe (Value Text)
deepLinkAllowed :: Maybe (Value Text)
disconnectTimeoutInMinutes :: Maybe (Value Double)
idleDisconnectTimeoutInMinutes :: Maybe (Value Double)
pasteAllowed :: Value Text
printAllowed :: Value Text
tags :: Maybe [Tag]
toolbarConfiguration :: Maybe ToolbarConfigurationProperty
uploadAllowed :: Value Text
..}
instance Property "IdleDisconnectTimeoutInMinutes" UserSettings where
type PropertyType "IdleDisconnectTimeoutInMinutes" UserSettings = Value Prelude.Double
set :: PropertyType "IdleDisconnectTimeoutInMinutes" UserSettings
-> UserSettings -> UserSettings
set PropertyType "IdleDisconnectTimeoutInMinutes" UserSettings
newValue UserSettings {Maybe [Tag]
Maybe (Map Text (Value Text))
Maybe (Value Double)
Maybe (Value Text)
Maybe CookieSynchronizationConfigurationProperty
Maybe ToolbarConfigurationProperty
()
Value Text
haddock_workaround_ :: UserSettings -> ()
additionalEncryptionContext :: UserSettings -> Maybe (Map Text (Value Text))
cookieSynchronizationConfiguration :: UserSettings -> Maybe CookieSynchronizationConfigurationProperty
copyAllowed :: UserSettings -> Value Text
customerManagedKey :: UserSettings -> Maybe (Value Text)
deepLinkAllowed :: UserSettings -> Maybe (Value Text)
disconnectTimeoutInMinutes :: UserSettings -> Maybe (Value Double)
downloadAllowed :: UserSettings -> Value Text
idleDisconnectTimeoutInMinutes :: UserSettings -> Maybe (Value Double)
pasteAllowed :: UserSettings -> Value Text
printAllowed :: UserSettings -> Value Text
tags :: UserSettings -> Maybe [Tag]
toolbarConfiguration :: UserSettings -> Maybe ToolbarConfigurationProperty
uploadAllowed :: UserSettings -> Value Text
haddock_workaround_ :: ()
additionalEncryptionContext :: Maybe (Map Text (Value Text))
cookieSynchronizationConfiguration :: Maybe CookieSynchronizationConfigurationProperty
copyAllowed :: Value Text
customerManagedKey :: Maybe (Value Text)
deepLinkAllowed :: Maybe (Value Text)
disconnectTimeoutInMinutes :: Maybe (Value Double)
downloadAllowed :: Value Text
idleDisconnectTimeoutInMinutes :: Maybe (Value Double)
pasteAllowed :: Value Text
printAllowed :: Value Text
tags :: Maybe [Tag]
toolbarConfiguration :: Maybe ToolbarConfigurationProperty
uploadAllowed :: Value Text
..}
= UserSettings
{idleDisconnectTimeoutInMinutes :: Maybe (Value Double)
idleDisconnectTimeoutInMinutes = Value Double -> Maybe (Value Double)
forall a. a -> Maybe a
forall (f :: * -> *) a. Applicative f => a -> f a
Prelude.pure PropertyType "IdleDisconnectTimeoutInMinutes" UserSettings
Value Double
newValue, Maybe [Tag]
Maybe (Map Text (Value Text))
Maybe (Value Double)
Maybe (Value Text)
Maybe CookieSynchronizationConfigurationProperty
Maybe ToolbarConfigurationProperty
()
Value Text
haddock_workaround_ :: ()
additionalEncryptionContext :: Maybe (Map Text (Value Text))
cookieSynchronizationConfiguration :: Maybe CookieSynchronizationConfigurationProperty
copyAllowed :: Value Text
customerManagedKey :: Maybe (Value Text)
deepLinkAllowed :: Maybe (Value Text)
disconnectTimeoutInMinutes :: Maybe (Value Double)
downloadAllowed :: Value Text
pasteAllowed :: Value Text
printAllowed :: Value Text
tags :: Maybe [Tag]
toolbarConfiguration :: Maybe ToolbarConfigurationProperty
uploadAllowed :: Value Text
haddock_workaround_ :: ()
additionalEncryptionContext :: Maybe (Map Text (Value Text))
cookieSynchronizationConfiguration :: Maybe CookieSynchronizationConfigurationProperty
copyAllowed :: Value Text
customerManagedKey :: Maybe (Value Text)
deepLinkAllowed :: Maybe (Value Text)
disconnectTimeoutInMinutes :: Maybe (Value Double)
downloadAllowed :: Value Text
pasteAllowed :: Value Text
printAllowed :: Value Text
tags :: Maybe [Tag]
toolbarConfiguration :: Maybe ToolbarConfigurationProperty
uploadAllowed :: Value Text
..}
instance Property "PasteAllowed" UserSettings where
type PropertyType "PasteAllowed" UserSettings = Value Prelude.Text
set :: PropertyType "PasteAllowed" UserSettings
-> UserSettings -> UserSettings
set PropertyType "PasteAllowed" UserSettings
newValue UserSettings {Maybe [Tag]
Maybe (Map Text (Value Text))
Maybe (Value Double)
Maybe (Value Text)
Maybe CookieSynchronizationConfigurationProperty
Maybe ToolbarConfigurationProperty
()
Value Text
haddock_workaround_ :: UserSettings -> ()
additionalEncryptionContext :: UserSettings -> Maybe (Map Text (Value Text))
cookieSynchronizationConfiguration :: UserSettings -> Maybe CookieSynchronizationConfigurationProperty
copyAllowed :: UserSettings -> Value Text
customerManagedKey :: UserSettings -> Maybe (Value Text)
deepLinkAllowed :: UserSettings -> Maybe (Value Text)
disconnectTimeoutInMinutes :: UserSettings -> Maybe (Value Double)
downloadAllowed :: UserSettings -> Value Text
idleDisconnectTimeoutInMinutes :: UserSettings -> Maybe (Value Double)
pasteAllowed :: UserSettings -> Value Text
printAllowed :: UserSettings -> Value Text
tags :: UserSettings -> Maybe [Tag]
toolbarConfiguration :: UserSettings -> Maybe ToolbarConfigurationProperty
uploadAllowed :: UserSettings -> Value Text
haddock_workaround_ :: ()
additionalEncryptionContext :: Maybe (Map Text (Value Text))
cookieSynchronizationConfiguration :: Maybe CookieSynchronizationConfigurationProperty
copyAllowed :: Value Text
customerManagedKey :: Maybe (Value Text)
deepLinkAllowed :: Maybe (Value Text)
disconnectTimeoutInMinutes :: Maybe (Value Double)
downloadAllowed :: Value Text
idleDisconnectTimeoutInMinutes :: Maybe (Value Double)
pasteAllowed :: Value Text
printAllowed :: Value Text
tags :: Maybe [Tag]
toolbarConfiguration :: Maybe ToolbarConfigurationProperty
uploadAllowed :: Value Text
..}
= UserSettings {pasteAllowed :: Value Text
pasteAllowed = PropertyType "PasteAllowed" UserSettings
Value Text
newValue, Maybe [Tag]
Maybe (Map Text (Value Text))
Maybe (Value Double)
Maybe (Value Text)
Maybe CookieSynchronizationConfigurationProperty
Maybe ToolbarConfigurationProperty
()
Value Text
haddock_workaround_ :: ()
additionalEncryptionContext :: Maybe (Map Text (Value Text))
cookieSynchronizationConfiguration :: Maybe CookieSynchronizationConfigurationProperty
copyAllowed :: Value Text
customerManagedKey :: Maybe (Value Text)
deepLinkAllowed :: Maybe (Value Text)
disconnectTimeoutInMinutes :: Maybe (Value Double)
downloadAllowed :: Value Text
idleDisconnectTimeoutInMinutes :: Maybe (Value Double)
printAllowed :: Value Text
tags :: Maybe [Tag]
toolbarConfiguration :: Maybe ToolbarConfigurationProperty
uploadAllowed :: Value Text
haddock_workaround_ :: ()
additionalEncryptionContext :: Maybe (Map Text (Value Text))
cookieSynchronizationConfiguration :: Maybe CookieSynchronizationConfigurationProperty
copyAllowed :: Value Text
customerManagedKey :: Maybe (Value Text)
deepLinkAllowed :: Maybe (Value Text)
disconnectTimeoutInMinutes :: Maybe (Value Double)
downloadAllowed :: Value Text
idleDisconnectTimeoutInMinutes :: Maybe (Value Double)
printAllowed :: Value Text
tags :: Maybe [Tag]
toolbarConfiguration :: Maybe ToolbarConfigurationProperty
uploadAllowed :: Value Text
..}
instance Property "PrintAllowed" UserSettings where
type PropertyType "PrintAllowed" UserSettings = Value Prelude.Text
set :: PropertyType "PrintAllowed" UserSettings
-> UserSettings -> UserSettings
set PropertyType "PrintAllowed" UserSettings
newValue UserSettings {Maybe [Tag]
Maybe (Map Text (Value Text))
Maybe (Value Double)
Maybe (Value Text)
Maybe CookieSynchronizationConfigurationProperty
Maybe ToolbarConfigurationProperty
()
Value Text
haddock_workaround_ :: UserSettings -> ()
additionalEncryptionContext :: UserSettings -> Maybe (Map Text (Value Text))
cookieSynchronizationConfiguration :: UserSettings -> Maybe CookieSynchronizationConfigurationProperty
copyAllowed :: UserSettings -> Value Text
customerManagedKey :: UserSettings -> Maybe (Value Text)
deepLinkAllowed :: UserSettings -> Maybe (Value Text)
disconnectTimeoutInMinutes :: UserSettings -> Maybe (Value Double)
downloadAllowed :: UserSettings -> Value Text
idleDisconnectTimeoutInMinutes :: UserSettings -> Maybe (Value Double)
pasteAllowed :: UserSettings -> Value Text
printAllowed :: UserSettings -> Value Text
tags :: UserSettings -> Maybe [Tag]
toolbarConfiguration :: UserSettings -> Maybe ToolbarConfigurationProperty
uploadAllowed :: UserSettings -> Value Text
haddock_workaround_ :: ()
additionalEncryptionContext :: Maybe (Map Text (Value Text))
cookieSynchronizationConfiguration :: Maybe CookieSynchronizationConfigurationProperty
copyAllowed :: Value Text
customerManagedKey :: Maybe (Value Text)
deepLinkAllowed :: Maybe (Value Text)
disconnectTimeoutInMinutes :: Maybe (Value Double)
downloadAllowed :: Value Text
idleDisconnectTimeoutInMinutes :: Maybe (Value Double)
pasteAllowed :: Value Text
printAllowed :: Value Text
tags :: Maybe [Tag]
toolbarConfiguration :: Maybe ToolbarConfigurationProperty
uploadAllowed :: Value Text
..}
= UserSettings {printAllowed :: Value Text
printAllowed = PropertyType "PrintAllowed" UserSettings
Value Text
newValue, Maybe [Tag]
Maybe (Map Text (Value Text))
Maybe (Value Double)
Maybe (Value Text)
Maybe CookieSynchronizationConfigurationProperty
Maybe ToolbarConfigurationProperty
()
Value Text
haddock_workaround_ :: ()
additionalEncryptionContext :: Maybe (Map Text (Value Text))
cookieSynchronizationConfiguration :: Maybe CookieSynchronizationConfigurationProperty
copyAllowed :: Value Text
customerManagedKey :: Maybe (Value Text)
deepLinkAllowed :: Maybe (Value Text)
disconnectTimeoutInMinutes :: Maybe (Value Double)
downloadAllowed :: Value Text
idleDisconnectTimeoutInMinutes :: Maybe (Value Double)
pasteAllowed :: Value Text
tags :: Maybe [Tag]
toolbarConfiguration :: Maybe ToolbarConfigurationProperty
uploadAllowed :: Value Text
haddock_workaround_ :: ()
additionalEncryptionContext :: Maybe (Map Text (Value Text))
cookieSynchronizationConfiguration :: Maybe CookieSynchronizationConfigurationProperty
copyAllowed :: Value Text
customerManagedKey :: Maybe (Value Text)
deepLinkAllowed :: Maybe (Value Text)
disconnectTimeoutInMinutes :: Maybe (Value Double)
downloadAllowed :: Value Text
idleDisconnectTimeoutInMinutes :: Maybe (Value Double)
pasteAllowed :: Value Text
tags :: Maybe [Tag]
toolbarConfiguration :: Maybe ToolbarConfigurationProperty
uploadAllowed :: Value Text
..}
instance Property "Tags" UserSettings where
type PropertyType "Tags" UserSettings = [Tag]
set :: PropertyType "Tags" UserSettings -> UserSettings -> UserSettings
set PropertyType "Tags" UserSettings
newValue UserSettings {Maybe [Tag]
Maybe (Map Text (Value Text))
Maybe (Value Double)
Maybe (Value Text)
Maybe CookieSynchronizationConfigurationProperty
Maybe ToolbarConfigurationProperty
()
Value Text
haddock_workaround_ :: UserSettings -> ()
additionalEncryptionContext :: UserSettings -> Maybe (Map Text (Value Text))
cookieSynchronizationConfiguration :: UserSettings -> Maybe CookieSynchronizationConfigurationProperty
copyAllowed :: UserSettings -> Value Text
customerManagedKey :: UserSettings -> Maybe (Value Text)
deepLinkAllowed :: UserSettings -> Maybe (Value Text)
disconnectTimeoutInMinutes :: UserSettings -> Maybe (Value Double)
downloadAllowed :: UserSettings -> Value Text
idleDisconnectTimeoutInMinutes :: UserSettings -> Maybe (Value Double)
pasteAllowed :: UserSettings -> Value Text
printAllowed :: UserSettings -> Value Text
tags :: UserSettings -> Maybe [Tag]
toolbarConfiguration :: UserSettings -> Maybe ToolbarConfigurationProperty
uploadAllowed :: UserSettings -> Value Text
haddock_workaround_ :: ()
additionalEncryptionContext :: Maybe (Map Text (Value Text))
cookieSynchronizationConfiguration :: Maybe CookieSynchronizationConfigurationProperty
copyAllowed :: Value Text
customerManagedKey :: Maybe (Value Text)
deepLinkAllowed :: Maybe (Value Text)
disconnectTimeoutInMinutes :: Maybe (Value Double)
downloadAllowed :: Value Text
idleDisconnectTimeoutInMinutes :: Maybe (Value Double)
pasteAllowed :: Value Text
printAllowed :: Value Text
tags :: Maybe [Tag]
toolbarConfiguration :: Maybe ToolbarConfigurationProperty
uploadAllowed :: Value Text
..}
= UserSettings {tags :: Maybe [Tag]
tags = [Tag] -> Maybe [Tag]
forall a. a -> Maybe a
forall (f :: * -> *) a. Applicative f => a -> f a
Prelude.pure [Tag]
PropertyType "Tags" UserSettings
newValue, Maybe (Map Text (Value Text))
Maybe (Value Double)
Maybe (Value Text)
Maybe CookieSynchronizationConfigurationProperty
Maybe ToolbarConfigurationProperty
()
Value Text
haddock_workaround_ :: ()
additionalEncryptionContext :: Maybe (Map Text (Value Text))
cookieSynchronizationConfiguration :: Maybe CookieSynchronizationConfigurationProperty
copyAllowed :: Value Text
customerManagedKey :: Maybe (Value Text)
deepLinkAllowed :: Maybe (Value Text)
disconnectTimeoutInMinutes :: Maybe (Value Double)
downloadAllowed :: Value Text
idleDisconnectTimeoutInMinutes :: Maybe (Value Double)
pasteAllowed :: Value Text
printAllowed :: Value Text
toolbarConfiguration :: Maybe ToolbarConfigurationProperty
uploadAllowed :: Value Text
haddock_workaround_ :: ()
additionalEncryptionContext :: Maybe (Map Text (Value Text))
cookieSynchronizationConfiguration :: Maybe CookieSynchronizationConfigurationProperty
copyAllowed :: Value Text
customerManagedKey :: Maybe (Value Text)
deepLinkAllowed :: Maybe (Value Text)
disconnectTimeoutInMinutes :: Maybe (Value Double)
downloadAllowed :: Value Text
idleDisconnectTimeoutInMinutes :: Maybe (Value Double)
pasteAllowed :: Value Text
printAllowed :: Value Text
toolbarConfiguration :: Maybe ToolbarConfigurationProperty
uploadAllowed :: Value Text
..}
instance Property "ToolbarConfiguration" UserSettings where
type PropertyType "ToolbarConfiguration" UserSettings = ToolbarConfigurationProperty
set :: PropertyType "ToolbarConfiguration" UserSettings
-> UserSettings -> UserSettings
set PropertyType "ToolbarConfiguration" UserSettings
newValue UserSettings {Maybe [Tag]
Maybe (Map Text (Value Text))
Maybe (Value Double)
Maybe (Value Text)
Maybe CookieSynchronizationConfigurationProperty
Maybe ToolbarConfigurationProperty
()
Value Text
haddock_workaround_ :: UserSettings -> ()
additionalEncryptionContext :: UserSettings -> Maybe (Map Text (Value Text))
cookieSynchronizationConfiguration :: UserSettings -> Maybe CookieSynchronizationConfigurationProperty
copyAllowed :: UserSettings -> Value Text
customerManagedKey :: UserSettings -> Maybe (Value Text)
deepLinkAllowed :: UserSettings -> Maybe (Value Text)
disconnectTimeoutInMinutes :: UserSettings -> Maybe (Value Double)
downloadAllowed :: UserSettings -> Value Text
idleDisconnectTimeoutInMinutes :: UserSettings -> Maybe (Value Double)
pasteAllowed :: UserSettings -> Value Text
printAllowed :: UserSettings -> Value Text
tags :: UserSettings -> Maybe [Tag]
toolbarConfiguration :: UserSettings -> Maybe ToolbarConfigurationProperty
uploadAllowed :: UserSettings -> Value Text
haddock_workaround_ :: ()
additionalEncryptionContext :: Maybe (Map Text (Value Text))
cookieSynchronizationConfiguration :: Maybe CookieSynchronizationConfigurationProperty
copyAllowed :: Value Text
customerManagedKey :: Maybe (Value Text)
deepLinkAllowed :: Maybe (Value Text)
disconnectTimeoutInMinutes :: Maybe (Value Double)
downloadAllowed :: Value Text
idleDisconnectTimeoutInMinutes :: Maybe (Value Double)
pasteAllowed :: Value Text
printAllowed :: Value Text
tags :: Maybe [Tag]
toolbarConfiguration :: Maybe ToolbarConfigurationProperty
uploadAllowed :: Value Text
..}
= UserSettings {toolbarConfiguration :: Maybe ToolbarConfigurationProperty
toolbarConfiguration = ToolbarConfigurationProperty -> Maybe ToolbarConfigurationProperty
forall a. a -> Maybe a
forall (f :: * -> *) a. Applicative f => a -> f a
Prelude.pure PropertyType "ToolbarConfiguration" UserSettings
ToolbarConfigurationProperty
newValue, Maybe [Tag]
Maybe (Map Text (Value Text))
Maybe (Value Double)
Maybe (Value Text)
Maybe CookieSynchronizationConfigurationProperty
()
Value Text
haddock_workaround_ :: ()
additionalEncryptionContext :: Maybe (Map Text (Value Text))
cookieSynchronizationConfiguration :: Maybe CookieSynchronizationConfigurationProperty
copyAllowed :: Value Text
customerManagedKey :: Maybe (Value Text)
deepLinkAllowed :: Maybe (Value Text)
disconnectTimeoutInMinutes :: Maybe (Value Double)
downloadAllowed :: Value Text
idleDisconnectTimeoutInMinutes :: Maybe (Value Double)
pasteAllowed :: Value Text
printAllowed :: Value Text
tags :: Maybe [Tag]
uploadAllowed :: Value Text
haddock_workaround_ :: ()
additionalEncryptionContext :: Maybe (Map Text (Value Text))
cookieSynchronizationConfiguration :: Maybe CookieSynchronizationConfigurationProperty
copyAllowed :: Value Text
customerManagedKey :: Maybe (Value Text)
deepLinkAllowed :: Maybe (Value Text)
disconnectTimeoutInMinutes :: Maybe (Value Double)
downloadAllowed :: Value Text
idleDisconnectTimeoutInMinutes :: Maybe (Value Double)
pasteAllowed :: Value Text
printAllowed :: Value Text
tags :: Maybe [Tag]
uploadAllowed :: Value Text
..}
instance Property "UploadAllowed" UserSettings where
type PropertyType "UploadAllowed" UserSettings = Value Prelude.Text
set :: PropertyType "UploadAllowed" UserSettings
-> UserSettings -> UserSettings
set PropertyType "UploadAllowed" UserSettings
newValue UserSettings {Maybe [Tag]
Maybe (Map Text (Value Text))
Maybe (Value Double)
Maybe (Value Text)
Maybe CookieSynchronizationConfigurationProperty
Maybe ToolbarConfigurationProperty
()
Value Text
haddock_workaround_ :: UserSettings -> ()
additionalEncryptionContext :: UserSettings -> Maybe (Map Text (Value Text))
cookieSynchronizationConfiguration :: UserSettings -> Maybe CookieSynchronizationConfigurationProperty
copyAllowed :: UserSettings -> Value Text
customerManagedKey :: UserSettings -> Maybe (Value Text)
deepLinkAllowed :: UserSettings -> Maybe (Value Text)
disconnectTimeoutInMinutes :: UserSettings -> Maybe (Value Double)
downloadAllowed :: UserSettings -> Value Text
idleDisconnectTimeoutInMinutes :: UserSettings -> Maybe (Value Double)
pasteAllowed :: UserSettings -> Value Text
printAllowed :: UserSettings -> Value Text
tags :: UserSettings -> Maybe [Tag]
toolbarConfiguration :: UserSettings -> Maybe ToolbarConfigurationProperty
uploadAllowed :: UserSettings -> Value Text
haddock_workaround_ :: ()
additionalEncryptionContext :: Maybe (Map Text (Value Text))
cookieSynchronizationConfiguration :: Maybe CookieSynchronizationConfigurationProperty
copyAllowed :: Value Text
customerManagedKey :: Maybe (Value Text)
deepLinkAllowed :: Maybe (Value Text)
disconnectTimeoutInMinutes :: Maybe (Value Double)
downloadAllowed :: Value Text
idleDisconnectTimeoutInMinutes :: Maybe (Value Double)
pasteAllowed :: Value Text
printAllowed :: Value Text
tags :: Maybe [Tag]
toolbarConfiguration :: Maybe ToolbarConfigurationProperty
uploadAllowed :: Value Text
..}
= UserSettings {uploadAllowed :: Value Text
uploadAllowed = PropertyType "UploadAllowed" UserSettings
Value Text
newValue, Maybe [Tag]
Maybe (Map Text (Value Text))
Maybe (Value Double)
Maybe (Value Text)
Maybe CookieSynchronizationConfigurationProperty
Maybe ToolbarConfigurationProperty
()
Value Text
haddock_workaround_ :: ()
additionalEncryptionContext :: Maybe (Map Text (Value Text))
cookieSynchronizationConfiguration :: Maybe CookieSynchronizationConfigurationProperty
copyAllowed :: Value Text
customerManagedKey :: Maybe (Value Text)
deepLinkAllowed :: Maybe (Value Text)
disconnectTimeoutInMinutes :: Maybe (Value Double)
downloadAllowed :: Value Text
idleDisconnectTimeoutInMinutes :: Maybe (Value Double)
pasteAllowed :: Value Text
printAllowed :: Value Text
tags :: Maybe [Tag]
toolbarConfiguration :: Maybe ToolbarConfigurationProperty
haddock_workaround_ :: ()
additionalEncryptionContext :: Maybe (Map Text (Value Text))
cookieSynchronizationConfiguration :: Maybe CookieSynchronizationConfigurationProperty
copyAllowed :: Value Text
customerManagedKey :: Maybe (Value Text)
deepLinkAllowed :: Maybe (Value Text)
disconnectTimeoutInMinutes :: Maybe (Value Double)
downloadAllowed :: Value Text
idleDisconnectTimeoutInMinutes :: Maybe (Value Double)
pasteAllowed :: Value Text
printAllowed :: Value Text
tags :: Maybe [Tag]
toolbarConfiguration :: Maybe ToolbarConfigurationProperty
..}