module Stratosphere.QBusiness.WebExperience (
        module Exports, WebExperience(..), mkWebExperience
    ) where
import qualified Data.Aeson as JSON
import qualified Stratosphere.Prelude as Prelude
import Stratosphere.Property
import {-# SOURCE #-} Stratosphere.QBusiness.WebExperience.BrowserExtensionConfigurationProperty as Exports
import {-# SOURCE #-} Stratosphere.QBusiness.WebExperience.CustomizationConfigurationProperty as Exports
import {-# SOURCE #-} Stratosphere.QBusiness.WebExperience.IdentityProviderConfigurationProperty as Exports
import Stratosphere.ResourceProperties
import Stratosphere.Tag
import Stratosphere.Value
data WebExperience
  = -- | See: <http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-qbusiness-webexperience.html>
    WebExperience {WebExperience -> ()
haddock_workaround_ :: (),
                   -- | See: <http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-qbusiness-webexperience.html#cfn-qbusiness-webexperience-applicationid>
                   WebExperience -> Value Text
applicationId :: (Value Prelude.Text),
                   -- | See: <http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-qbusiness-webexperience.html#cfn-qbusiness-webexperience-browserextensionconfiguration>
                   WebExperience -> Maybe BrowserExtensionConfigurationProperty
browserExtensionConfiguration :: (Prelude.Maybe BrowserExtensionConfigurationProperty),
                   -- | See: <http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-qbusiness-webexperience.html#cfn-qbusiness-webexperience-customizationconfiguration>
                   WebExperience -> Maybe CustomizationConfigurationProperty
customizationConfiguration :: (Prelude.Maybe CustomizationConfigurationProperty),
                   -- | See: <http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-qbusiness-webexperience.html#cfn-qbusiness-webexperience-identityproviderconfiguration>
                   WebExperience -> Maybe IdentityProviderConfigurationProperty
identityProviderConfiguration :: (Prelude.Maybe IdentityProviderConfigurationProperty),
                   -- | See: <http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-qbusiness-webexperience.html#cfn-qbusiness-webexperience-origins>
                   WebExperience -> Maybe (ValueList Text)
origins :: (Prelude.Maybe (ValueList Prelude.Text)),
                   -- | See: <http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-qbusiness-webexperience.html#cfn-qbusiness-webexperience-rolearn>
                   WebExperience -> Maybe (Value Text)
roleArn :: (Prelude.Maybe (Value Prelude.Text)),
                   -- | See: <http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-qbusiness-webexperience.html#cfn-qbusiness-webexperience-samplepromptscontrolmode>
                   WebExperience -> Maybe (Value Text)
samplePromptsControlMode :: (Prelude.Maybe (Value Prelude.Text)),
                   -- | See: <http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-qbusiness-webexperience.html#cfn-qbusiness-webexperience-subtitle>
                   WebExperience -> Maybe (Value Text)
subtitle :: (Prelude.Maybe (Value Prelude.Text)),
                   -- | See: <http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-qbusiness-webexperience.html#cfn-qbusiness-webexperience-tags>
                   WebExperience -> Maybe [Tag]
tags :: (Prelude.Maybe [Tag]),
                   -- | See: <http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-qbusiness-webexperience.html#cfn-qbusiness-webexperience-title>
                   WebExperience -> Maybe (Value Text)
title :: (Prelude.Maybe (Value Prelude.Text)),
                   -- | See: <http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-qbusiness-webexperience.html#cfn-qbusiness-webexperience-welcomemessage>
                   WebExperience -> Maybe (Value Text)
welcomeMessage :: (Prelude.Maybe (Value Prelude.Text))}
  deriving stock (WebExperience -> WebExperience -> Bool
(WebExperience -> WebExperience -> Bool)
-> (WebExperience -> WebExperience -> Bool) -> Eq WebExperience
forall a. (a -> a -> Bool) -> (a -> a -> Bool) -> Eq a
$c== :: WebExperience -> WebExperience -> Bool
== :: WebExperience -> WebExperience -> Bool
$c/= :: WebExperience -> WebExperience -> Bool
/= :: WebExperience -> WebExperience -> Bool
Prelude.Eq, Int -> WebExperience -> ShowS
[WebExperience] -> ShowS
WebExperience -> String
(Int -> WebExperience -> ShowS)
-> (WebExperience -> String)
-> ([WebExperience] -> ShowS)
-> Show WebExperience
forall a.
(Int -> a -> ShowS) -> (a -> String) -> ([a] -> ShowS) -> Show a
$cshowsPrec :: Int -> WebExperience -> ShowS
showsPrec :: Int -> WebExperience -> ShowS
$cshow :: WebExperience -> String
show :: WebExperience -> String
$cshowList :: [WebExperience] -> ShowS
showList :: [WebExperience] -> ShowS
Prelude.Show)
mkWebExperience :: Value Prelude.Text -> WebExperience
mkWebExperience :: Value Text -> WebExperience
mkWebExperience Value Text
applicationId
  = WebExperience
      {haddock_workaround_ :: ()
haddock_workaround_ = (), applicationId :: Value Text
applicationId = Value Text
applicationId,
       browserExtensionConfiguration :: Maybe BrowserExtensionConfigurationProperty
browserExtensionConfiguration = Maybe BrowserExtensionConfigurationProperty
forall a. Maybe a
Prelude.Nothing,
       customizationConfiguration :: Maybe CustomizationConfigurationProperty
customizationConfiguration = Maybe CustomizationConfigurationProperty
forall a. Maybe a
Prelude.Nothing,
       identityProviderConfiguration :: Maybe IdentityProviderConfigurationProperty
identityProviderConfiguration = Maybe IdentityProviderConfigurationProperty
forall a. Maybe a
Prelude.Nothing,
       origins :: Maybe (ValueList Text)
origins = Maybe (ValueList Text)
forall a. Maybe a
Prelude.Nothing, roleArn :: Maybe (Value Text)
roleArn = Maybe (Value Text)
forall a. Maybe a
Prelude.Nothing,
       samplePromptsControlMode :: Maybe (Value Text)
samplePromptsControlMode = Maybe (Value Text)
forall a. Maybe a
Prelude.Nothing,
       subtitle :: Maybe (Value Text)
subtitle = Maybe (Value Text)
forall a. Maybe a
Prelude.Nothing, tags :: Maybe [Tag]
tags = Maybe [Tag]
forall a. Maybe a
Prelude.Nothing,
       title :: Maybe (Value Text)
title = Maybe (Value Text)
forall a. Maybe a
Prelude.Nothing, welcomeMessage :: Maybe (Value Text)
welcomeMessage = Maybe (Value Text)
forall a. Maybe a
Prelude.Nothing}
instance ToResourceProperties WebExperience where
  toResourceProperties :: WebExperience -> ResourceProperties
toResourceProperties WebExperience {Maybe [Tag]
Maybe (ValueList Text)
Maybe (Value Text)
Maybe BrowserExtensionConfigurationProperty
Maybe CustomizationConfigurationProperty
Maybe IdentityProviderConfigurationProperty
()
Value Text
haddock_workaround_ :: WebExperience -> ()
applicationId :: WebExperience -> Value Text
browserExtensionConfiguration :: WebExperience -> Maybe BrowserExtensionConfigurationProperty
customizationConfiguration :: WebExperience -> Maybe CustomizationConfigurationProperty
identityProviderConfiguration :: WebExperience -> Maybe IdentityProviderConfigurationProperty
origins :: WebExperience -> Maybe (ValueList Text)
roleArn :: WebExperience -> Maybe (Value Text)
samplePromptsControlMode :: WebExperience -> Maybe (Value Text)
subtitle :: WebExperience -> Maybe (Value Text)
tags :: WebExperience -> Maybe [Tag]
title :: WebExperience -> Maybe (Value Text)
welcomeMessage :: WebExperience -> Maybe (Value Text)
haddock_workaround_ :: ()
applicationId :: Value Text
browserExtensionConfiguration :: Maybe BrowserExtensionConfigurationProperty
customizationConfiguration :: Maybe CustomizationConfigurationProperty
identityProviderConfiguration :: Maybe IdentityProviderConfigurationProperty
origins :: Maybe (ValueList Text)
roleArn :: Maybe (Value Text)
samplePromptsControlMode :: Maybe (Value Text)
subtitle :: Maybe (Value Text)
tags :: Maybe [Tag]
title :: Maybe (Value Text)
welcomeMessage :: Maybe (Value Text)
..}
    = ResourceProperties
        {awsType :: Text
awsType = Text
"AWS::QBusiness::WebExperience",
         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
"ApplicationId" 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
applicationId]
                           ([Maybe (Key, Value)] -> [(Key, Value)]
forall a. [Maybe a] -> [a]
Prelude.catMaybes
                              [Key -> BrowserExtensionConfigurationProperty -> (Key, Value)
forall v. ToJSON v => Key -> v -> (Key, Value)
forall e kv v. (KeyValue e kv, ToJSON v) => Key -> v -> kv
(JSON..=) Key
"BrowserExtensionConfiguration"
                                 (BrowserExtensionConfigurationProperty -> (Key, Value))
-> Maybe BrowserExtensionConfigurationProperty
-> Maybe (Key, Value)
forall (f :: * -> *) a b. Functor f => (a -> b) -> f a -> f b
Prelude.<$> Maybe BrowserExtensionConfigurationProperty
browserExtensionConfiguration,
                               Key -> CustomizationConfigurationProperty -> (Key, Value)
forall v. ToJSON v => Key -> v -> (Key, Value)
forall e kv v. (KeyValue e kv, ToJSON v) => Key -> v -> kv
(JSON..=) Key
"CustomizationConfiguration"
                                 (CustomizationConfigurationProperty -> (Key, Value))
-> Maybe CustomizationConfigurationProperty -> Maybe (Key, Value)
forall (f :: * -> *) a b. Functor f => (a -> b) -> f a -> f b
Prelude.<$> Maybe CustomizationConfigurationProperty
customizationConfiguration,
                               Key -> IdentityProviderConfigurationProperty -> (Key, Value)
forall v. ToJSON v => Key -> v -> (Key, Value)
forall e kv v. (KeyValue e kv, ToJSON v) => Key -> v -> kv
(JSON..=) Key
"IdentityProviderConfiguration"
                                 (IdentityProviderConfigurationProperty -> (Key, Value))
-> Maybe IdentityProviderConfigurationProperty
-> Maybe (Key, Value)
forall (f :: * -> *) a b. Functor f => (a -> b) -> f a -> f b
Prelude.<$> Maybe IdentityProviderConfigurationProperty
identityProviderConfiguration,
                               Key -> ValueList 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
"Origins" (ValueList Text -> (Key, Value))
-> Maybe (ValueList Text) -> Maybe (Key, Value)
forall (f :: * -> *) a b. Functor f => (a -> b) -> f a -> f b
Prelude.<$> Maybe (ValueList Text)
origins,
                               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
"RoleArn" (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)
roleArn,
                               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
"SamplePromptsControlMode"
                                 (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)
samplePromptsControlMode,
                               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
"Subtitle" (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)
subtitle,
                               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 -> 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
"Title" (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)
title,
                               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
"WelcomeMessage" (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)
welcomeMessage]))}
instance JSON.ToJSON WebExperience where
  toJSON :: WebExperience -> Value
toJSON WebExperience {Maybe [Tag]
Maybe (ValueList Text)
Maybe (Value Text)
Maybe BrowserExtensionConfigurationProperty
Maybe CustomizationConfigurationProperty
Maybe IdentityProviderConfigurationProperty
()
Value Text
haddock_workaround_ :: WebExperience -> ()
applicationId :: WebExperience -> Value Text
browserExtensionConfiguration :: WebExperience -> Maybe BrowserExtensionConfigurationProperty
customizationConfiguration :: WebExperience -> Maybe CustomizationConfigurationProperty
identityProviderConfiguration :: WebExperience -> Maybe IdentityProviderConfigurationProperty
origins :: WebExperience -> Maybe (ValueList Text)
roleArn :: WebExperience -> Maybe (Value Text)
samplePromptsControlMode :: WebExperience -> Maybe (Value Text)
subtitle :: WebExperience -> Maybe (Value Text)
tags :: WebExperience -> Maybe [Tag]
title :: WebExperience -> Maybe (Value Text)
welcomeMessage :: WebExperience -> Maybe (Value Text)
haddock_workaround_ :: ()
applicationId :: Value Text
browserExtensionConfiguration :: Maybe BrowserExtensionConfigurationProperty
customizationConfiguration :: Maybe CustomizationConfigurationProperty
identityProviderConfiguration :: Maybe IdentityProviderConfigurationProperty
origins :: Maybe (ValueList Text)
roleArn :: Maybe (Value Text)
samplePromptsControlMode :: Maybe (Value Text)
subtitle :: Maybe (Value Text)
tags :: Maybe [Tag]
title :: Maybe (Value Text)
welcomeMessage :: Maybe (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
"ApplicationId" 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
applicationId]
              ([Maybe (Key, Value)] -> [(Key, Value)]
forall a. [Maybe a] -> [a]
Prelude.catMaybes
                 [Key -> BrowserExtensionConfigurationProperty -> (Key, Value)
forall v. ToJSON v => Key -> v -> (Key, Value)
forall e kv v. (KeyValue e kv, ToJSON v) => Key -> v -> kv
(JSON..=) Key
"BrowserExtensionConfiguration"
                    (BrowserExtensionConfigurationProperty -> (Key, Value))
-> Maybe BrowserExtensionConfigurationProperty
-> Maybe (Key, Value)
forall (f :: * -> *) a b. Functor f => (a -> b) -> f a -> f b
Prelude.<$> Maybe BrowserExtensionConfigurationProperty
browserExtensionConfiguration,
                  Key -> CustomizationConfigurationProperty -> (Key, Value)
forall v. ToJSON v => Key -> v -> (Key, Value)
forall e kv v. (KeyValue e kv, ToJSON v) => Key -> v -> kv
(JSON..=) Key
"CustomizationConfiguration"
                    (CustomizationConfigurationProperty -> (Key, Value))
-> Maybe CustomizationConfigurationProperty -> Maybe (Key, Value)
forall (f :: * -> *) a b. Functor f => (a -> b) -> f a -> f b
Prelude.<$> Maybe CustomizationConfigurationProperty
customizationConfiguration,
                  Key -> IdentityProviderConfigurationProperty -> (Key, Value)
forall v. ToJSON v => Key -> v -> (Key, Value)
forall e kv v. (KeyValue e kv, ToJSON v) => Key -> v -> kv
(JSON..=) Key
"IdentityProviderConfiguration"
                    (IdentityProviderConfigurationProperty -> (Key, Value))
-> Maybe IdentityProviderConfigurationProperty
-> Maybe (Key, Value)
forall (f :: * -> *) a b. Functor f => (a -> b) -> f a -> f b
Prelude.<$> Maybe IdentityProviderConfigurationProperty
identityProviderConfiguration,
                  Key -> ValueList 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
"Origins" (ValueList Text -> (Key, Value))
-> Maybe (ValueList Text) -> Maybe (Key, Value)
forall (f :: * -> *) a b. Functor f => (a -> b) -> f a -> f b
Prelude.<$> Maybe (ValueList Text)
origins,
                  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
"RoleArn" (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)
roleArn,
                  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
"SamplePromptsControlMode"
                    (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)
samplePromptsControlMode,
                  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
"Subtitle" (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)
subtitle,
                  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 -> 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
"Title" (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)
title,
                  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
"WelcomeMessage" (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)
welcomeMessage])))
instance Property "ApplicationId" WebExperience where
  type PropertyType "ApplicationId" WebExperience = Value Prelude.Text
  set :: PropertyType "ApplicationId" WebExperience
-> WebExperience -> WebExperience
set PropertyType "ApplicationId" WebExperience
newValue WebExperience {Maybe [Tag]
Maybe (ValueList Text)
Maybe (Value Text)
Maybe BrowserExtensionConfigurationProperty
Maybe CustomizationConfigurationProperty
Maybe IdentityProviderConfigurationProperty
()
Value Text
haddock_workaround_ :: WebExperience -> ()
applicationId :: WebExperience -> Value Text
browserExtensionConfiguration :: WebExperience -> Maybe BrowserExtensionConfigurationProperty
customizationConfiguration :: WebExperience -> Maybe CustomizationConfigurationProperty
identityProviderConfiguration :: WebExperience -> Maybe IdentityProviderConfigurationProperty
origins :: WebExperience -> Maybe (ValueList Text)
roleArn :: WebExperience -> Maybe (Value Text)
samplePromptsControlMode :: WebExperience -> Maybe (Value Text)
subtitle :: WebExperience -> Maybe (Value Text)
tags :: WebExperience -> Maybe [Tag]
title :: WebExperience -> Maybe (Value Text)
welcomeMessage :: WebExperience -> Maybe (Value Text)
haddock_workaround_ :: ()
applicationId :: Value Text
browserExtensionConfiguration :: Maybe BrowserExtensionConfigurationProperty
customizationConfiguration :: Maybe CustomizationConfigurationProperty
identityProviderConfiguration :: Maybe IdentityProviderConfigurationProperty
origins :: Maybe (ValueList Text)
roleArn :: Maybe (Value Text)
samplePromptsControlMode :: Maybe (Value Text)
subtitle :: Maybe (Value Text)
tags :: Maybe [Tag]
title :: Maybe (Value Text)
welcomeMessage :: Maybe (Value Text)
..}
    = WebExperience {applicationId :: Value Text
applicationId = PropertyType "ApplicationId" WebExperience
Value Text
newValue, Maybe [Tag]
Maybe (ValueList Text)
Maybe (Value Text)
Maybe BrowserExtensionConfigurationProperty
Maybe CustomizationConfigurationProperty
Maybe IdentityProviderConfigurationProperty
()
haddock_workaround_ :: ()
browserExtensionConfiguration :: Maybe BrowserExtensionConfigurationProperty
customizationConfiguration :: Maybe CustomizationConfigurationProperty
identityProviderConfiguration :: Maybe IdentityProviderConfigurationProperty
origins :: Maybe (ValueList Text)
roleArn :: Maybe (Value Text)
samplePromptsControlMode :: Maybe (Value Text)
subtitle :: Maybe (Value Text)
tags :: Maybe [Tag]
title :: Maybe (Value Text)
welcomeMessage :: Maybe (Value Text)
haddock_workaround_ :: ()
browserExtensionConfiguration :: Maybe BrowserExtensionConfigurationProperty
customizationConfiguration :: Maybe CustomizationConfigurationProperty
identityProviderConfiguration :: Maybe IdentityProviderConfigurationProperty
origins :: Maybe (ValueList Text)
roleArn :: Maybe (Value Text)
samplePromptsControlMode :: Maybe (Value Text)
subtitle :: Maybe (Value Text)
tags :: Maybe [Tag]
title :: Maybe (Value Text)
welcomeMessage :: Maybe (Value Text)
..}
instance Property "BrowserExtensionConfiguration" WebExperience where
  type PropertyType "BrowserExtensionConfiguration" WebExperience = BrowserExtensionConfigurationProperty
  set :: PropertyType "BrowserExtensionConfiguration" WebExperience
-> WebExperience -> WebExperience
set PropertyType "BrowserExtensionConfiguration" WebExperience
newValue WebExperience {Maybe [Tag]
Maybe (ValueList Text)
Maybe (Value Text)
Maybe BrowserExtensionConfigurationProperty
Maybe CustomizationConfigurationProperty
Maybe IdentityProviderConfigurationProperty
()
Value Text
haddock_workaround_ :: WebExperience -> ()
applicationId :: WebExperience -> Value Text
browserExtensionConfiguration :: WebExperience -> Maybe BrowserExtensionConfigurationProperty
customizationConfiguration :: WebExperience -> Maybe CustomizationConfigurationProperty
identityProviderConfiguration :: WebExperience -> Maybe IdentityProviderConfigurationProperty
origins :: WebExperience -> Maybe (ValueList Text)
roleArn :: WebExperience -> Maybe (Value Text)
samplePromptsControlMode :: WebExperience -> Maybe (Value Text)
subtitle :: WebExperience -> Maybe (Value Text)
tags :: WebExperience -> Maybe [Tag]
title :: WebExperience -> Maybe (Value Text)
welcomeMessage :: WebExperience -> Maybe (Value Text)
haddock_workaround_ :: ()
applicationId :: Value Text
browserExtensionConfiguration :: Maybe BrowserExtensionConfigurationProperty
customizationConfiguration :: Maybe CustomizationConfigurationProperty
identityProviderConfiguration :: Maybe IdentityProviderConfigurationProperty
origins :: Maybe (ValueList Text)
roleArn :: Maybe (Value Text)
samplePromptsControlMode :: Maybe (Value Text)
subtitle :: Maybe (Value Text)
tags :: Maybe [Tag]
title :: Maybe (Value Text)
welcomeMessage :: Maybe (Value Text)
..}
    = WebExperience
        {browserExtensionConfiguration :: Maybe BrowserExtensionConfigurationProperty
browserExtensionConfiguration = BrowserExtensionConfigurationProperty
-> Maybe BrowserExtensionConfigurationProperty
forall a. a -> Maybe a
forall (f :: * -> *) a. Applicative f => a -> f a
Prelude.pure PropertyType "BrowserExtensionConfiguration" WebExperience
BrowserExtensionConfigurationProperty
newValue, Maybe [Tag]
Maybe (ValueList Text)
Maybe (Value Text)
Maybe CustomizationConfigurationProperty
Maybe IdentityProviderConfigurationProperty
()
Value Text
haddock_workaround_ :: ()
applicationId :: Value Text
customizationConfiguration :: Maybe CustomizationConfigurationProperty
identityProviderConfiguration :: Maybe IdentityProviderConfigurationProperty
origins :: Maybe (ValueList Text)
roleArn :: Maybe (Value Text)
samplePromptsControlMode :: Maybe (Value Text)
subtitle :: Maybe (Value Text)
tags :: Maybe [Tag]
title :: Maybe (Value Text)
welcomeMessage :: Maybe (Value Text)
haddock_workaround_ :: ()
applicationId :: Value Text
customizationConfiguration :: Maybe CustomizationConfigurationProperty
identityProviderConfiguration :: Maybe IdentityProviderConfigurationProperty
origins :: Maybe (ValueList Text)
roleArn :: Maybe (Value Text)
samplePromptsControlMode :: Maybe (Value Text)
subtitle :: Maybe (Value Text)
tags :: Maybe [Tag]
title :: Maybe (Value Text)
welcomeMessage :: Maybe (Value Text)
..}
instance Property "CustomizationConfiguration" WebExperience where
  type PropertyType "CustomizationConfiguration" WebExperience = CustomizationConfigurationProperty
  set :: PropertyType "CustomizationConfiguration" WebExperience
-> WebExperience -> WebExperience
set PropertyType "CustomizationConfiguration" WebExperience
newValue WebExperience {Maybe [Tag]
Maybe (ValueList Text)
Maybe (Value Text)
Maybe BrowserExtensionConfigurationProperty
Maybe CustomizationConfigurationProperty
Maybe IdentityProviderConfigurationProperty
()
Value Text
haddock_workaround_ :: WebExperience -> ()
applicationId :: WebExperience -> Value Text
browserExtensionConfiguration :: WebExperience -> Maybe BrowserExtensionConfigurationProperty
customizationConfiguration :: WebExperience -> Maybe CustomizationConfigurationProperty
identityProviderConfiguration :: WebExperience -> Maybe IdentityProviderConfigurationProperty
origins :: WebExperience -> Maybe (ValueList Text)
roleArn :: WebExperience -> Maybe (Value Text)
samplePromptsControlMode :: WebExperience -> Maybe (Value Text)
subtitle :: WebExperience -> Maybe (Value Text)
tags :: WebExperience -> Maybe [Tag]
title :: WebExperience -> Maybe (Value Text)
welcomeMessage :: WebExperience -> Maybe (Value Text)
haddock_workaround_ :: ()
applicationId :: Value Text
browserExtensionConfiguration :: Maybe BrowserExtensionConfigurationProperty
customizationConfiguration :: Maybe CustomizationConfigurationProperty
identityProviderConfiguration :: Maybe IdentityProviderConfigurationProperty
origins :: Maybe (ValueList Text)
roleArn :: Maybe (Value Text)
samplePromptsControlMode :: Maybe (Value Text)
subtitle :: Maybe (Value Text)
tags :: Maybe [Tag]
title :: Maybe (Value Text)
welcomeMessage :: Maybe (Value Text)
..}
    = WebExperience
        {customizationConfiguration :: Maybe CustomizationConfigurationProperty
customizationConfiguration = CustomizationConfigurationProperty
-> Maybe CustomizationConfigurationProperty
forall a. a -> Maybe a
forall (f :: * -> *) a. Applicative f => a -> f a
Prelude.pure PropertyType "CustomizationConfiguration" WebExperience
CustomizationConfigurationProperty
newValue, Maybe [Tag]
Maybe (ValueList Text)
Maybe (Value Text)
Maybe BrowserExtensionConfigurationProperty
Maybe IdentityProviderConfigurationProperty
()
Value Text
haddock_workaround_ :: ()
applicationId :: Value Text
browserExtensionConfiguration :: Maybe BrowserExtensionConfigurationProperty
identityProviderConfiguration :: Maybe IdentityProviderConfigurationProperty
origins :: Maybe (ValueList Text)
roleArn :: Maybe (Value Text)
samplePromptsControlMode :: Maybe (Value Text)
subtitle :: Maybe (Value Text)
tags :: Maybe [Tag]
title :: Maybe (Value Text)
welcomeMessage :: Maybe (Value Text)
haddock_workaround_ :: ()
applicationId :: Value Text
browserExtensionConfiguration :: Maybe BrowserExtensionConfigurationProperty
identityProviderConfiguration :: Maybe IdentityProviderConfigurationProperty
origins :: Maybe (ValueList Text)
roleArn :: Maybe (Value Text)
samplePromptsControlMode :: Maybe (Value Text)
subtitle :: Maybe (Value Text)
tags :: Maybe [Tag]
title :: Maybe (Value Text)
welcomeMessage :: Maybe (Value Text)
..}
instance Property "IdentityProviderConfiguration" WebExperience where
  type PropertyType "IdentityProviderConfiguration" WebExperience = IdentityProviderConfigurationProperty
  set :: PropertyType "IdentityProviderConfiguration" WebExperience
-> WebExperience -> WebExperience
set PropertyType "IdentityProviderConfiguration" WebExperience
newValue WebExperience {Maybe [Tag]
Maybe (ValueList Text)
Maybe (Value Text)
Maybe BrowserExtensionConfigurationProperty
Maybe CustomizationConfigurationProperty
Maybe IdentityProviderConfigurationProperty
()
Value Text
haddock_workaround_ :: WebExperience -> ()
applicationId :: WebExperience -> Value Text
browserExtensionConfiguration :: WebExperience -> Maybe BrowserExtensionConfigurationProperty
customizationConfiguration :: WebExperience -> Maybe CustomizationConfigurationProperty
identityProviderConfiguration :: WebExperience -> Maybe IdentityProviderConfigurationProperty
origins :: WebExperience -> Maybe (ValueList Text)
roleArn :: WebExperience -> Maybe (Value Text)
samplePromptsControlMode :: WebExperience -> Maybe (Value Text)
subtitle :: WebExperience -> Maybe (Value Text)
tags :: WebExperience -> Maybe [Tag]
title :: WebExperience -> Maybe (Value Text)
welcomeMessage :: WebExperience -> Maybe (Value Text)
haddock_workaround_ :: ()
applicationId :: Value Text
browserExtensionConfiguration :: Maybe BrowserExtensionConfigurationProperty
customizationConfiguration :: Maybe CustomizationConfigurationProperty
identityProviderConfiguration :: Maybe IdentityProviderConfigurationProperty
origins :: Maybe (ValueList Text)
roleArn :: Maybe (Value Text)
samplePromptsControlMode :: Maybe (Value Text)
subtitle :: Maybe (Value Text)
tags :: Maybe [Tag]
title :: Maybe (Value Text)
welcomeMessage :: Maybe (Value Text)
..}
    = WebExperience
        {identityProviderConfiguration :: Maybe IdentityProviderConfigurationProperty
identityProviderConfiguration = IdentityProviderConfigurationProperty
-> Maybe IdentityProviderConfigurationProperty
forall a. a -> Maybe a
forall (f :: * -> *) a. Applicative f => a -> f a
Prelude.pure PropertyType "IdentityProviderConfiguration" WebExperience
IdentityProviderConfigurationProperty
newValue, Maybe [Tag]
Maybe (ValueList Text)
Maybe (Value Text)
Maybe BrowserExtensionConfigurationProperty
Maybe CustomizationConfigurationProperty
()
Value Text
haddock_workaround_ :: ()
applicationId :: Value Text
browserExtensionConfiguration :: Maybe BrowserExtensionConfigurationProperty
customizationConfiguration :: Maybe CustomizationConfigurationProperty
origins :: Maybe (ValueList Text)
roleArn :: Maybe (Value Text)
samplePromptsControlMode :: Maybe (Value Text)
subtitle :: Maybe (Value Text)
tags :: Maybe [Tag]
title :: Maybe (Value Text)
welcomeMessage :: Maybe (Value Text)
haddock_workaround_ :: ()
applicationId :: Value Text
browserExtensionConfiguration :: Maybe BrowserExtensionConfigurationProperty
customizationConfiguration :: Maybe CustomizationConfigurationProperty
origins :: Maybe (ValueList Text)
roleArn :: Maybe (Value Text)
samplePromptsControlMode :: Maybe (Value Text)
subtitle :: Maybe (Value Text)
tags :: Maybe [Tag]
title :: Maybe (Value Text)
welcomeMessage :: Maybe (Value Text)
..}
instance Property "Origins" WebExperience where
  type PropertyType "Origins" WebExperience = ValueList Prelude.Text
  set :: PropertyType "Origins" WebExperience
-> WebExperience -> WebExperience
set PropertyType "Origins" WebExperience
newValue WebExperience {Maybe [Tag]
Maybe (ValueList Text)
Maybe (Value Text)
Maybe BrowserExtensionConfigurationProperty
Maybe CustomizationConfigurationProperty
Maybe IdentityProviderConfigurationProperty
()
Value Text
haddock_workaround_ :: WebExperience -> ()
applicationId :: WebExperience -> Value Text
browserExtensionConfiguration :: WebExperience -> Maybe BrowserExtensionConfigurationProperty
customizationConfiguration :: WebExperience -> Maybe CustomizationConfigurationProperty
identityProviderConfiguration :: WebExperience -> Maybe IdentityProviderConfigurationProperty
origins :: WebExperience -> Maybe (ValueList Text)
roleArn :: WebExperience -> Maybe (Value Text)
samplePromptsControlMode :: WebExperience -> Maybe (Value Text)
subtitle :: WebExperience -> Maybe (Value Text)
tags :: WebExperience -> Maybe [Tag]
title :: WebExperience -> Maybe (Value Text)
welcomeMessage :: WebExperience -> Maybe (Value Text)
haddock_workaround_ :: ()
applicationId :: Value Text
browserExtensionConfiguration :: Maybe BrowserExtensionConfigurationProperty
customizationConfiguration :: Maybe CustomizationConfigurationProperty
identityProviderConfiguration :: Maybe IdentityProviderConfigurationProperty
origins :: Maybe (ValueList Text)
roleArn :: Maybe (Value Text)
samplePromptsControlMode :: Maybe (Value Text)
subtitle :: Maybe (Value Text)
tags :: Maybe [Tag]
title :: Maybe (Value Text)
welcomeMessage :: Maybe (Value Text)
..}
    = WebExperience {origins :: Maybe (ValueList Text)
origins = ValueList Text -> Maybe (ValueList Text)
forall a. a -> Maybe a
forall (f :: * -> *) a. Applicative f => a -> f a
Prelude.pure PropertyType "Origins" WebExperience
ValueList Text
newValue, Maybe [Tag]
Maybe (Value Text)
Maybe BrowserExtensionConfigurationProperty
Maybe CustomizationConfigurationProperty
Maybe IdentityProviderConfigurationProperty
()
Value Text
haddock_workaround_ :: ()
applicationId :: Value Text
browserExtensionConfiguration :: Maybe BrowserExtensionConfigurationProperty
customizationConfiguration :: Maybe CustomizationConfigurationProperty
identityProviderConfiguration :: Maybe IdentityProviderConfigurationProperty
roleArn :: Maybe (Value Text)
samplePromptsControlMode :: Maybe (Value Text)
subtitle :: Maybe (Value Text)
tags :: Maybe [Tag]
title :: Maybe (Value Text)
welcomeMessage :: Maybe (Value Text)
haddock_workaround_ :: ()
applicationId :: Value Text
browserExtensionConfiguration :: Maybe BrowserExtensionConfigurationProperty
customizationConfiguration :: Maybe CustomizationConfigurationProperty
identityProviderConfiguration :: Maybe IdentityProviderConfigurationProperty
roleArn :: Maybe (Value Text)
samplePromptsControlMode :: Maybe (Value Text)
subtitle :: Maybe (Value Text)
tags :: Maybe [Tag]
title :: Maybe (Value Text)
welcomeMessage :: Maybe (Value Text)
..}
instance Property "RoleArn" WebExperience where
  type PropertyType "RoleArn" WebExperience = Value Prelude.Text
  set :: PropertyType "RoleArn" WebExperience
-> WebExperience -> WebExperience
set PropertyType "RoleArn" WebExperience
newValue WebExperience {Maybe [Tag]
Maybe (ValueList Text)
Maybe (Value Text)
Maybe BrowserExtensionConfigurationProperty
Maybe CustomizationConfigurationProperty
Maybe IdentityProviderConfigurationProperty
()
Value Text
haddock_workaround_ :: WebExperience -> ()
applicationId :: WebExperience -> Value Text
browserExtensionConfiguration :: WebExperience -> Maybe BrowserExtensionConfigurationProperty
customizationConfiguration :: WebExperience -> Maybe CustomizationConfigurationProperty
identityProviderConfiguration :: WebExperience -> Maybe IdentityProviderConfigurationProperty
origins :: WebExperience -> Maybe (ValueList Text)
roleArn :: WebExperience -> Maybe (Value Text)
samplePromptsControlMode :: WebExperience -> Maybe (Value Text)
subtitle :: WebExperience -> Maybe (Value Text)
tags :: WebExperience -> Maybe [Tag]
title :: WebExperience -> Maybe (Value Text)
welcomeMessage :: WebExperience -> Maybe (Value Text)
haddock_workaround_ :: ()
applicationId :: Value Text
browserExtensionConfiguration :: Maybe BrowserExtensionConfigurationProperty
customizationConfiguration :: Maybe CustomizationConfigurationProperty
identityProviderConfiguration :: Maybe IdentityProviderConfigurationProperty
origins :: Maybe (ValueList Text)
roleArn :: Maybe (Value Text)
samplePromptsControlMode :: Maybe (Value Text)
subtitle :: Maybe (Value Text)
tags :: Maybe [Tag]
title :: Maybe (Value Text)
welcomeMessage :: Maybe (Value Text)
..}
    = WebExperience {roleArn :: Maybe (Value Text)
roleArn = Value Text -> Maybe (Value Text)
forall a. a -> Maybe a
forall (f :: * -> *) a. Applicative f => a -> f a
Prelude.pure PropertyType "RoleArn" WebExperience
Value Text
newValue, Maybe [Tag]
Maybe (ValueList Text)
Maybe (Value Text)
Maybe BrowserExtensionConfigurationProperty
Maybe CustomizationConfigurationProperty
Maybe IdentityProviderConfigurationProperty
()
Value Text
haddock_workaround_ :: ()
applicationId :: Value Text
browserExtensionConfiguration :: Maybe BrowserExtensionConfigurationProperty
customizationConfiguration :: Maybe CustomizationConfigurationProperty
identityProviderConfiguration :: Maybe IdentityProviderConfigurationProperty
origins :: Maybe (ValueList Text)
samplePromptsControlMode :: Maybe (Value Text)
subtitle :: Maybe (Value Text)
tags :: Maybe [Tag]
title :: Maybe (Value Text)
welcomeMessage :: Maybe (Value Text)
haddock_workaround_ :: ()
applicationId :: Value Text
browserExtensionConfiguration :: Maybe BrowserExtensionConfigurationProperty
customizationConfiguration :: Maybe CustomizationConfigurationProperty
identityProviderConfiguration :: Maybe IdentityProviderConfigurationProperty
origins :: Maybe (ValueList Text)
samplePromptsControlMode :: Maybe (Value Text)
subtitle :: Maybe (Value Text)
tags :: Maybe [Tag]
title :: Maybe (Value Text)
welcomeMessage :: Maybe (Value Text)
..}
instance Property "SamplePromptsControlMode" WebExperience where
  type PropertyType "SamplePromptsControlMode" WebExperience = Value Prelude.Text
  set :: PropertyType "SamplePromptsControlMode" WebExperience
-> WebExperience -> WebExperience
set PropertyType "SamplePromptsControlMode" WebExperience
newValue WebExperience {Maybe [Tag]
Maybe (ValueList Text)
Maybe (Value Text)
Maybe BrowserExtensionConfigurationProperty
Maybe CustomizationConfigurationProperty
Maybe IdentityProviderConfigurationProperty
()
Value Text
haddock_workaround_ :: WebExperience -> ()
applicationId :: WebExperience -> Value Text
browserExtensionConfiguration :: WebExperience -> Maybe BrowserExtensionConfigurationProperty
customizationConfiguration :: WebExperience -> Maybe CustomizationConfigurationProperty
identityProviderConfiguration :: WebExperience -> Maybe IdentityProviderConfigurationProperty
origins :: WebExperience -> Maybe (ValueList Text)
roleArn :: WebExperience -> Maybe (Value Text)
samplePromptsControlMode :: WebExperience -> Maybe (Value Text)
subtitle :: WebExperience -> Maybe (Value Text)
tags :: WebExperience -> Maybe [Tag]
title :: WebExperience -> Maybe (Value Text)
welcomeMessage :: WebExperience -> Maybe (Value Text)
haddock_workaround_ :: ()
applicationId :: Value Text
browserExtensionConfiguration :: Maybe BrowserExtensionConfigurationProperty
customizationConfiguration :: Maybe CustomizationConfigurationProperty
identityProviderConfiguration :: Maybe IdentityProviderConfigurationProperty
origins :: Maybe (ValueList Text)
roleArn :: Maybe (Value Text)
samplePromptsControlMode :: Maybe (Value Text)
subtitle :: Maybe (Value Text)
tags :: Maybe [Tag]
title :: Maybe (Value Text)
welcomeMessage :: Maybe (Value Text)
..}
    = WebExperience
        {samplePromptsControlMode :: Maybe (Value Text)
samplePromptsControlMode = Value Text -> Maybe (Value Text)
forall a. a -> Maybe a
forall (f :: * -> *) a. Applicative f => a -> f a
Prelude.pure PropertyType "SamplePromptsControlMode" WebExperience
Value Text
newValue, Maybe [Tag]
Maybe (ValueList Text)
Maybe (Value Text)
Maybe BrowserExtensionConfigurationProperty
Maybe CustomizationConfigurationProperty
Maybe IdentityProviderConfigurationProperty
()
Value Text
haddock_workaround_ :: ()
applicationId :: Value Text
browserExtensionConfiguration :: Maybe BrowserExtensionConfigurationProperty
customizationConfiguration :: Maybe CustomizationConfigurationProperty
identityProviderConfiguration :: Maybe IdentityProviderConfigurationProperty
origins :: Maybe (ValueList Text)
roleArn :: Maybe (Value Text)
subtitle :: Maybe (Value Text)
tags :: Maybe [Tag]
title :: Maybe (Value Text)
welcomeMessage :: Maybe (Value Text)
haddock_workaround_ :: ()
applicationId :: Value Text
browserExtensionConfiguration :: Maybe BrowserExtensionConfigurationProperty
customizationConfiguration :: Maybe CustomizationConfigurationProperty
identityProviderConfiguration :: Maybe IdentityProviderConfigurationProperty
origins :: Maybe (ValueList Text)
roleArn :: Maybe (Value Text)
subtitle :: Maybe (Value Text)
tags :: Maybe [Tag]
title :: Maybe (Value Text)
welcomeMessage :: Maybe (Value Text)
..}
instance Property "Subtitle" WebExperience where
  type PropertyType "Subtitle" WebExperience = Value Prelude.Text
  set :: PropertyType "Subtitle" WebExperience
-> WebExperience -> WebExperience
set PropertyType "Subtitle" WebExperience
newValue WebExperience {Maybe [Tag]
Maybe (ValueList Text)
Maybe (Value Text)
Maybe BrowserExtensionConfigurationProperty
Maybe CustomizationConfigurationProperty
Maybe IdentityProviderConfigurationProperty
()
Value Text
haddock_workaround_ :: WebExperience -> ()
applicationId :: WebExperience -> Value Text
browserExtensionConfiguration :: WebExperience -> Maybe BrowserExtensionConfigurationProperty
customizationConfiguration :: WebExperience -> Maybe CustomizationConfigurationProperty
identityProviderConfiguration :: WebExperience -> Maybe IdentityProviderConfigurationProperty
origins :: WebExperience -> Maybe (ValueList Text)
roleArn :: WebExperience -> Maybe (Value Text)
samplePromptsControlMode :: WebExperience -> Maybe (Value Text)
subtitle :: WebExperience -> Maybe (Value Text)
tags :: WebExperience -> Maybe [Tag]
title :: WebExperience -> Maybe (Value Text)
welcomeMessage :: WebExperience -> Maybe (Value Text)
haddock_workaround_ :: ()
applicationId :: Value Text
browserExtensionConfiguration :: Maybe BrowserExtensionConfigurationProperty
customizationConfiguration :: Maybe CustomizationConfigurationProperty
identityProviderConfiguration :: Maybe IdentityProviderConfigurationProperty
origins :: Maybe (ValueList Text)
roleArn :: Maybe (Value Text)
samplePromptsControlMode :: Maybe (Value Text)
subtitle :: Maybe (Value Text)
tags :: Maybe [Tag]
title :: Maybe (Value Text)
welcomeMessage :: Maybe (Value Text)
..}
    = WebExperience {subtitle :: Maybe (Value Text)
subtitle = Value Text -> Maybe (Value Text)
forall a. a -> Maybe a
forall (f :: * -> *) a. Applicative f => a -> f a
Prelude.pure PropertyType "Subtitle" WebExperience
Value Text
newValue, Maybe [Tag]
Maybe (ValueList Text)
Maybe (Value Text)
Maybe BrowserExtensionConfigurationProperty
Maybe CustomizationConfigurationProperty
Maybe IdentityProviderConfigurationProperty
()
Value Text
haddock_workaround_ :: ()
applicationId :: Value Text
browserExtensionConfiguration :: Maybe BrowserExtensionConfigurationProperty
customizationConfiguration :: Maybe CustomizationConfigurationProperty
identityProviderConfiguration :: Maybe IdentityProviderConfigurationProperty
origins :: Maybe (ValueList Text)
roleArn :: Maybe (Value Text)
samplePromptsControlMode :: Maybe (Value Text)
tags :: Maybe [Tag]
title :: Maybe (Value Text)
welcomeMessage :: Maybe (Value Text)
haddock_workaround_ :: ()
applicationId :: Value Text
browserExtensionConfiguration :: Maybe BrowserExtensionConfigurationProperty
customizationConfiguration :: Maybe CustomizationConfigurationProperty
identityProviderConfiguration :: Maybe IdentityProviderConfigurationProperty
origins :: Maybe (ValueList Text)
roleArn :: Maybe (Value Text)
samplePromptsControlMode :: Maybe (Value Text)
tags :: Maybe [Tag]
title :: Maybe (Value Text)
welcomeMessage :: Maybe (Value Text)
..}
instance Property "Tags" WebExperience where
  type PropertyType "Tags" WebExperience = [Tag]
  set :: PropertyType "Tags" WebExperience -> WebExperience -> WebExperience
set PropertyType "Tags" WebExperience
newValue WebExperience {Maybe [Tag]
Maybe (ValueList Text)
Maybe (Value Text)
Maybe BrowserExtensionConfigurationProperty
Maybe CustomizationConfigurationProperty
Maybe IdentityProviderConfigurationProperty
()
Value Text
haddock_workaround_ :: WebExperience -> ()
applicationId :: WebExperience -> Value Text
browserExtensionConfiguration :: WebExperience -> Maybe BrowserExtensionConfigurationProperty
customizationConfiguration :: WebExperience -> Maybe CustomizationConfigurationProperty
identityProviderConfiguration :: WebExperience -> Maybe IdentityProviderConfigurationProperty
origins :: WebExperience -> Maybe (ValueList Text)
roleArn :: WebExperience -> Maybe (Value Text)
samplePromptsControlMode :: WebExperience -> Maybe (Value Text)
subtitle :: WebExperience -> Maybe (Value Text)
tags :: WebExperience -> Maybe [Tag]
title :: WebExperience -> Maybe (Value Text)
welcomeMessage :: WebExperience -> Maybe (Value Text)
haddock_workaround_ :: ()
applicationId :: Value Text
browserExtensionConfiguration :: Maybe BrowserExtensionConfigurationProperty
customizationConfiguration :: Maybe CustomizationConfigurationProperty
identityProviderConfiguration :: Maybe IdentityProviderConfigurationProperty
origins :: Maybe (ValueList Text)
roleArn :: Maybe (Value Text)
samplePromptsControlMode :: Maybe (Value Text)
subtitle :: Maybe (Value Text)
tags :: Maybe [Tag]
title :: Maybe (Value Text)
welcomeMessage :: Maybe (Value Text)
..}
    = WebExperience {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" WebExperience
newValue, Maybe (ValueList Text)
Maybe (Value Text)
Maybe BrowserExtensionConfigurationProperty
Maybe CustomizationConfigurationProperty
Maybe IdentityProviderConfigurationProperty
()
Value Text
haddock_workaround_ :: ()
applicationId :: Value Text
browserExtensionConfiguration :: Maybe BrowserExtensionConfigurationProperty
customizationConfiguration :: Maybe CustomizationConfigurationProperty
identityProviderConfiguration :: Maybe IdentityProviderConfigurationProperty
origins :: Maybe (ValueList Text)
roleArn :: Maybe (Value Text)
samplePromptsControlMode :: Maybe (Value Text)
subtitle :: Maybe (Value Text)
title :: Maybe (Value Text)
welcomeMessage :: Maybe (Value Text)
haddock_workaround_ :: ()
applicationId :: Value Text
browserExtensionConfiguration :: Maybe BrowserExtensionConfigurationProperty
customizationConfiguration :: Maybe CustomizationConfigurationProperty
identityProviderConfiguration :: Maybe IdentityProviderConfigurationProperty
origins :: Maybe (ValueList Text)
roleArn :: Maybe (Value Text)
samplePromptsControlMode :: Maybe (Value Text)
subtitle :: Maybe (Value Text)
title :: Maybe (Value Text)
welcomeMessage :: Maybe (Value Text)
..}
instance Property "Title" WebExperience where
  type PropertyType "Title" WebExperience = Value Prelude.Text
  set :: PropertyType "Title" WebExperience
-> WebExperience -> WebExperience
set PropertyType "Title" WebExperience
newValue WebExperience {Maybe [Tag]
Maybe (ValueList Text)
Maybe (Value Text)
Maybe BrowserExtensionConfigurationProperty
Maybe CustomizationConfigurationProperty
Maybe IdentityProviderConfigurationProperty
()
Value Text
haddock_workaround_ :: WebExperience -> ()
applicationId :: WebExperience -> Value Text
browserExtensionConfiguration :: WebExperience -> Maybe BrowserExtensionConfigurationProperty
customizationConfiguration :: WebExperience -> Maybe CustomizationConfigurationProperty
identityProviderConfiguration :: WebExperience -> Maybe IdentityProviderConfigurationProperty
origins :: WebExperience -> Maybe (ValueList Text)
roleArn :: WebExperience -> Maybe (Value Text)
samplePromptsControlMode :: WebExperience -> Maybe (Value Text)
subtitle :: WebExperience -> Maybe (Value Text)
tags :: WebExperience -> Maybe [Tag]
title :: WebExperience -> Maybe (Value Text)
welcomeMessage :: WebExperience -> Maybe (Value Text)
haddock_workaround_ :: ()
applicationId :: Value Text
browserExtensionConfiguration :: Maybe BrowserExtensionConfigurationProperty
customizationConfiguration :: Maybe CustomizationConfigurationProperty
identityProviderConfiguration :: Maybe IdentityProviderConfigurationProperty
origins :: Maybe (ValueList Text)
roleArn :: Maybe (Value Text)
samplePromptsControlMode :: Maybe (Value Text)
subtitle :: Maybe (Value Text)
tags :: Maybe [Tag]
title :: Maybe (Value Text)
welcomeMessage :: Maybe (Value Text)
..}
    = WebExperience {title :: Maybe (Value Text)
title = Value Text -> Maybe (Value Text)
forall a. a -> Maybe a
forall (f :: * -> *) a. Applicative f => a -> f a
Prelude.pure PropertyType "Title" WebExperience
Value Text
newValue, Maybe [Tag]
Maybe (ValueList Text)
Maybe (Value Text)
Maybe BrowserExtensionConfigurationProperty
Maybe CustomizationConfigurationProperty
Maybe IdentityProviderConfigurationProperty
()
Value Text
haddock_workaround_ :: ()
applicationId :: Value Text
browserExtensionConfiguration :: Maybe BrowserExtensionConfigurationProperty
customizationConfiguration :: Maybe CustomizationConfigurationProperty
identityProviderConfiguration :: Maybe IdentityProviderConfigurationProperty
origins :: Maybe (ValueList Text)
roleArn :: Maybe (Value Text)
samplePromptsControlMode :: Maybe (Value Text)
subtitle :: Maybe (Value Text)
tags :: Maybe [Tag]
welcomeMessage :: Maybe (Value Text)
haddock_workaround_ :: ()
applicationId :: Value Text
browserExtensionConfiguration :: Maybe BrowserExtensionConfigurationProperty
customizationConfiguration :: Maybe CustomizationConfigurationProperty
identityProviderConfiguration :: Maybe IdentityProviderConfigurationProperty
origins :: Maybe (ValueList Text)
roleArn :: Maybe (Value Text)
samplePromptsControlMode :: Maybe (Value Text)
subtitle :: Maybe (Value Text)
tags :: Maybe [Tag]
welcomeMessage :: Maybe (Value Text)
..}
instance Property "WelcomeMessage" WebExperience where
  type PropertyType "WelcomeMessage" WebExperience = Value Prelude.Text
  set :: PropertyType "WelcomeMessage" WebExperience
-> WebExperience -> WebExperience
set PropertyType "WelcomeMessage" WebExperience
newValue WebExperience {Maybe [Tag]
Maybe (ValueList Text)
Maybe (Value Text)
Maybe BrowserExtensionConfigurationProperty
Maybe CustomizationConfigurationProperty
Maybe IdentityProviderConfigurationProperty
()
Value Text
haddock_workaround_ :: WebExperience -> ()
applicationId :: WebExperience -> Value Text
browserExtensionConfiguration :: WebExperience -> Maybe BrowserExtensionConfigurationProperty
customizationConfiguration :: WebExperience -> Maybe CustomizationConfigurationProperty
identityProviderConfiguration :: WebExperience -> Maybe IdentityProviderConfigurationProperty
origins :: WebExperience -> Maybe (ValueList Text)
roleArn :: WebExperience -> Maybe (Value Text)
samplePromptsControlMode :: WebExperience -> Maybe (Value Text)
subtitle :: WebExperience -> Maybe (Value Text)
tags :: WebExperience -> Maybe [Tag]
title :: WebExperience -> Maybe (Value Text)
welcomeMessage :: WebExperience -> Maybe (Value Text)
haddock_workaround_ :: ()
applicationId :: Value Text
browserExtensionConfiguration :: Maybe BrowserExtensionConfigurationProperty
customizationConfiguration :: Maybe CustomizationConfigurationProperty
identityProviderConfiguration :: Maybe IdentityProviderConfigurationProperty
origins :: Maybe (ValueList Text)
roleArn :: Maybe (Value Text)
samplePromptsControlMode :: Maybe (Value Text)
subtitle :: Maybe (Value Text)
tags :: Maybe [Tag]
title :: Maybe (Value Text)
welcomeMessage :: Maybe (Value Text)
..}
    = WebExperience {welcomeMessage :: Maybe (Value Text)
welcomeMessage = Value Text -> Maybe (Value Text)
forall a. a -> Maybe a
forall (f :: * -> *) a. Applicative f => a -> f a
Prelude.pure PropertyType "WelcomeMessage" WebExperience
Value Text
newValue, Maybe [Tag]
Maybe (ValueList Text)
Maybe (Value Text)
Maybe BrowserExtensionConfigurationProperty
Maybe CustomizationConfigurationProperty
Maybe IdentityProviderConfigurationProperty
()
Value Text
haddock_workaround_ :: ()
applicationId :: Value Text
browserExtensionConfiguration :: Maybe BrowserExtensionConfigurationProperty
customizationConfiguration :: Maybe CustomizationConfigurationProperty
identityProviderConfiguration :: Maybe IdentityProviderConfigurationProperty
origins :: Maybe (ValueList Text)
roleArn :: Maybe (Value Text)
samplePromptsControlMode :: Maybe (Value Text)
subtitle :: Maybe (Value Text)
tags :: Maybe [Tag]
title :: Maybe (Value Text)
haddock_workaround_ :: ()
applicationId :: Value Text
browserExtensionConfiguration :: Maybe BrowserExtensionConfigurationProperty
customizationConfiguration :: Maybe CustomizationConfigurationProperty
identityProviderConfiguration :: Maybe IdentityProviderConfigurationProperty
origins :: Maybe (ValueList Text)
roleArn :: Maybe (Value Text)
samplePromptsControlMode :: Maybe (Value Text)
subtitle :: Maybe (Value Text)
tags :: Maybe [Tag]
title :: Maybe (Value Text)
..}