module Stratosphere.BedrockAgentCore.BrowserCustom (
        module Exports, BrowserCustom(..), mkBrowserCustom
    ) where
import qualified Data.Aeson as JSON
import qualified Stratosphere.Prelude as Prelude
import Stratosphere.Property
import {-# SOURCE #-} Stratosphere.BedrockAgentCore.BrowserCustom.BrowserNetworkConfigurationProperty as Exports
import {-# SOURCE #-} Stratosphere.BedrockAgentCore.BrowserCustom.RecordingConfigProperty as Exports
import Stratosphere.ResourceProperties
import Stratosphere.Value
data BrowserCustom
  = -- | See: <http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-bedrockagentcore-browsercustom.html>
    BrowserCustom {BrowserCustom -> ()
haddock_workaround_ :: (),
                   -- | See: <http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-bedrockagentcore-browsercustom.html#cfn-bedrockagentcore-browsercustom-description>
                   BrowserCustom -> Maybe (Value Text)
description :: (Prelude.Maybe (Value Prelude.Text)),
                   -- | See: <http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-bedrockagentcore-browsercustom.html#cfn-bedrockagentcore-browsercustom-executionrolearn>
                   BrowserCustom -> Maybe (Value Text)
executionRoleArn :: (Prelude.Maybe (Value Prelude.Text)),
                   -- | See: <http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-bedrockagentcore-browsercustom.html#cfn-bedrockagentcore-browsercustom-name>
                   BrowserCustom -> Value Text
name :: (Value Prelude.Text),
                   -- | See: <http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-bedrockagentcore-browsercustom.html#cfn-bedrockagentcore-browsercustom-networkconfiguration>
                   BrowserCustom -> BrowserNetworkConfigurationProperty
networkConfiguration :: BrowserNetworkConfigurationProperty,
                   -- | See: <http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-bedrockagentcore-browsercustom.html#cfn-bedrockagentcore-browsercustom-recordingconfig>
                   BrowserCustom -> Maybe RecordingConfigProperty
recordingConfig :: (Prelude.Maybe RecordingConfigProperty),
                   -- | See: <http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-bedrockagentcore-browsercustom.html#cfn-bedrockagentcore-browsercustom-tags>
                   BrowserCustom -> Maybe (Map Text (Value Text))
tags :: (Prelude.Maybe (Prelude.Map Prelude.Text (Value Prelude.Text)))}
  deriving stock (BrowserCustom -> BrowserCustom -> Bool
(BrowserCustom -> BrowserCustom -> Bool)
-> (BrowserCustom -> BrowserCustom -> Bool) -> Eq BrowserCustom
forall a. (a -> a -> Bool) -> (a -> a -> Bool) -> Eq a
$c== :: BrowserCustom -> BrowserCustom -> Bool
== :: BrowserCustom -> BrowserCustom -> Bool
$c/= :: BrowserCustom -> BrowserCustom -> Bool
/= :: BrowserCustom -> BrowserCustom -> Bool
Prelude.Eq, Int -> BrowserCustom -> ShowS
[BrowserCustom] -> ShowS
BrowserCustom -> String
(Int -> BrowserCustom -> ShowS)
-> (BrowserCustom -> String)
-> ([BrowserCustom] -> ShowS)
-> Show BrowserCustom
forall a.
(Int -> a -> ShowS) -> (a -> String) -> ([a] -> ShowS) -> Show a
$cshowsPrec :: Int -> BrowserCustom -> ShowS
showsPrec :: Int -> BrowserCustom -> ShowS
$cshow :: BrowserCustom -> String
show :: BrowserCustom -> String
$cshowList :: [BrowserCustom] -> ShowS
showList :: [BrowserCustom] -> ShowS
Prelude.Show)
mkBrowserCustom ::
  Value Prelude.Text
  -> BrowserNetworkConfigurationProperty -> BrowserCustom
mkBrowserCustom :: Value Text -> BrowserNetworkConfigurationProperty -> BrowserCustom
mkBrowserCustom Value Text
name BrowserNetworkConfigurationProperty
networkConfiguration
  = BrowserCustom
      {haddock_workaround_ :: ()
haddock_workaround_ = (), name :: Value Text
name = Value Text
name,
       networkConfiguration :: BrowserNetworkConfigurationProperty
networkConfiguration = BrowserNetworkConfigurationProperty
networkConfiguration,
       description :: Maybe (Value Text)
description = Maybe (Value Text)
forall a. Maybe a
Prelude.Nothing, executionRoleArn :: Maybe (Value Text)
executionRoleArn = Maybe (Value Text)
forall a. Maybe a
Prelude.Nothing,
       recordingConfig :: Maybe RecordingConfigProperty
recordingConfig = Maybe RecordingConfigProperty
forall a. Maybe a
Prelude.Nothing, tags :: Maybe (Map Text (Value Text))
tags = Maybe (Map Text (Value Text))
forall a. Maybe a
Prelude.Nothing}
instance ToResourceProperties BrowserCustom where
  toResourceProperties :: BrowserCustom -> ResourceProperties
toResourceProperties BrowserCustom {Maybe (Map Text (Value Text))
Maybe (Value Text)
Maybe RecordingConfigProperty
()
Value Text
BrowserNetworkConfigurationProperty
haddock_workaround_ :: BrowserCustom -> ()
description :: BrowserCustom -> Maybe (Value Text)
executionRoleArn :: BrowserCustom -> Maybe (Value Text)
name :: BrowserCustom -> Value Text
networkConfiguration :: BrowserCustom -> BrowserNetworkConfigurationProperty
recordingConfig :: BrowserCustom -> Maybe RecordingConfigProperty
tags :: BrowserCustom -> Maybe (Map Text (Value Text))
haddock_workaround_ :: ()
description :: Maybe (Value Text)
executionRoleArn :: Maybe (Value Text)
name :: Value Text
networkConfiguration :: BrowserNetworkConfigurationProperty
recordingConfig :: Maybe RecordingConfigProperty
tags :: Maybe (Map Text (Value Text))
..}
    = ResourceProperties
        {awsType :: Text
awsType = Text
"AWS::BedrockAgentCore::BrowserCustom",
         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
"Name" 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
name,
                            Key
"NetworkConfiguration" Key -> BrowserNetworkConfigurationProperty -> (Key, Value)
forall v. ToJSON v => Key -> v -> (Key, Value)
forall e kv v. (KeyValue e kv, ToJSON v) => Key -> v -> kv
JSON..= BrowserNetworkConfigurationProperty
networkConfiguration]
                           ([Maybe (Key, Value)] -> [(Key, Value)]
forall a. [Maybe a] -> [a]
Prelude.catMaybes
                              [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
"Description" (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)
description,
                               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
"ExecutionRoleArn" (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)
executionRoleArn,
                               Key -> RecordingConfigProperty -> (Key, Value)
forall v. ToJSON v => Key -> v -> (Key, Value)
forall e kv v. (KeyValue e kv, ToJSON v) => Key -> v -> kv
(JSON..=) Key
"RecordingConfig" (RecordingConfigProperty -> (Key, Value))
-> Maybe RecordingConfigProperty -> Maybe (Key, Value)
forall (f :: * -> *) a b. Functor f => (a -> b) -> f a -> f b
Prelude.<$> Maybe RecordingConfigProperty
recordingConfig,
                               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
"Tags" (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))
tags]))}
instance JSON.ToJSON BrowserCustom where
  toJSON :: BrowserCustom -> Value
toJSON BrowserCustom {Maybe (Map Text (Value Text))
Maybe (Value Text)
Maybe RecordingConfigProperty
()
Value Text
BrowserNetworkConfigurationProperty
haddock_workaround_ :: BrowserCustom -> ()
description :: BrowserCustom -> Maybe (Value Text)
executionRoleArn :: BrowserCustom -> Maybe (Value Text)
name :: BrowserCustom -> Value Text
networkConfiguration :: BrowserCustom -> BrowserNetworkConfigurationProperty
recordingConfig :: BrowserCustom -> Maybe RecordingConfigProperty
tags :: BrowserCustom -> Maybe (Map Text (Value Text))
haddock_workaround_ :: ()
description :: Maybe (Value Text)
executionRoleArn :: Maybe (Value Text)
name :: Value Text
networkConfiguration :: BrowserNetworkConfigurationProperty
recordingConfig :: Maybe RecordingConfigProperty
tags :: Maybe (Map Text (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
"Name" 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
name,
               Key
"NetworkConfiguration" Key -> BrowserNetworkConfigurationProperty -> (Key, Value)
forall v. ToJSON v => Key -> v -> (Key, Value)
forall e kv v. (KeyValue e kv, ToJSON v) => Key -> v -> kv
JSON..= BrowserNetworkConfigurationProperty
networkConfiguration]
              ([Maybe (Key, Value)] -> [(Key, Value)]
forall a. [Maybe a] -> [a]
Prelude.catMaybes
                 [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
"Description" (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)
description,
                  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
"ExecutionRoleArn" (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)
executionRoleArn,
                  Key -> RecordingConfigProperty -> (Key, Value)
forall v. ToJSON v => Key -> v -> (Key, Value)
forall e kv v. (KeyValue e kv, ToJSON v) => Key -> v -> kv
(JSON..=) Key
"RecordingConfig" (RecordingConfigProperty -> (Key, Value))
-> Maybe RecordingConfigProperty -> Maybe (Key, Value)
forall (f :: * -> *) a b. Functor f => (a -> b) -> f a -> f b
Prelude.<$> Maybe RecordingConfigProperty
recordingConfig,
                  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
"Tags" (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))
tags])))
instance Property "Description" BrowserCustom where
  type PropertyType "Description" BrowserCustom = Value Prelude.Text
  set :: PropertyType "Description" BrowserCustom
-> BrowserCustom -> BrowserCustom
set PropertyType "Description" BrowserCustom
newValue BrowserCustom {Maybe (Map Text (Value Text))
Maybe (Value Text)
Maybe RecordingConfigProperty
()
Value Text
BrowserNetworkConfigurationProperty
haddock_workaround_ :: BrowserCustom -> ()
description :: BrowserCustom -> Maybe (Value Text)
executionRoleArn :: BrowserCustom -> Maybe (Value Text)
name :: BrowserCustom -> Value Text
networkConfiguration :: BrowserCustom -> BrowserNetworkConfigurationProperty
recordingConfig :: BrowserCustom -> Maybe RecordingConfigProperty
tags :: BrowserCustom -> Maybe (Map Text (Value Text))
haddock_workaround_ :: ()
description :: Maybe (Value Text)
executionRoleArn :: Maybe (Value Text)
name :: Value Text
networkConfiguration :: BrowserNetworkConfigurationProperty
recordingConfig :: Maybe RecordingConfigProperty
tags :: Maybe (Map Text (Value Text))
..}
    = BrowserCustom {description :: Maybe (Value Text)
description = Value Text -> Maybe (Value Text)
forall a. a -> Maybe a
forall (f :: * -> *) a. Applicative f => a -> f a
Prelude.pure PropertyType "Description" BrowserCustom
Value Text
newValue, Maybe (Map Text (Value Text))
Maybe (Value Text)
Maybe RecordingConfigProperty
()
Value Text
BrowserNetworkConfigurationProperty
haddock_workaround_ :: ()
executionRoleArn :: Maybe (Value Text)
name :: Value Text
networkConfiguration :: BrowserNetworkConfigurationProperty
recordingConfig :: Maybe RecordingConfigProperty
tags :: Maybe (Map Text (Value Text))
haddock_workaround_ :: ()
executionRoleArn :: Maybe (Value Text)
name :: Value Text
networkConfiguration :: BrowserNetworkConfigurationProperty
recordingConfig :: Maybe RecordingConfigProperty
tags :: Maybe (Map Text (Value Text))
..}
instance Property "ExecutionRoleArn" BrowserCustom where
  type PropertyType "ExecutionRoleArn" BrowserCustom = Value Prelude.Text
  set :: PropertyType "ExecutionRoleArn" BrowserCustom
-> BrowserCustom -> BrowserCustom
set PropertyType "ExecutionRoleArn" BrowserCustom
newValue BrowserCustom {Maybe (Map Text (Value Text))
Maybe (Value Text)
Maybe RecordingConfigProperty
()
Value Text
BrowserNetworkConfigurationProperty
haddock_workaround_ :: BrowserCustom -> ()
description :: BrowserCustom -> Maybe (Value Text)
executionRoleArn :: BrowserCustom -> Maybe (Value Text)
name :: BrowserCustom -> Value Text
networkConfiguration :: BrowserCustom -> BrowserNetworkConfigurationProperty
recordingConfig :: BrowserCustom -> Maybe RecordingConfigProperty
tags :: BrowserCustom -> Maybe (Map Text (Value Text))
haddock_workaround_ :: ()
description :: Maybe (Value Text)
executionRoleArn :: Maybe (Value Text)
name :: Value Text
networkConfiguration :: BrowserNetworkConfigurationProperty
recordingConfig :: Maybe RecordingConfigProperty
tags :: Maybe (Map Text (Value Text))
..}
    = BrowserCustom {executionRoleArn :: Maybe (Value Text)
executionRoleArn = Value Text -> Maybe (Value Text)
forall a. a -> Maybe a
forall (f :: * -> *) a. Applicative f => a -> f a
Prelude.pure PropertyType "ExecutionRoleArn" BrowserCustom
Value Text
newValue, Maybe (Map Text (Value Text))
Maybe (Value Text)
Maybe RecordingConfigProperty
()
Value Text
BrowserNetworkConfigurationProperty
haddock_workaround_ :: ()
description :: Maybe (Value Text)
name :: Value Text
networkConfiguration :: BrowserNetworkConfigurationProperty
recordingConfig :: Maybe RecordingConfigProperty
tags :: Maybe (Map Text (Value Text))
haddock_workaround_ :: ()
description :: Maybe (Value Text)
name :: Value Text
networkConfiguration :: BrowserNetworkConfigurationProperty
recordingConfig :: Maybe RecordingConfigProperty
tags :: Maybe (Map Text (Value Text))
..}
instance Property "Name" BrowserCustom where
  type PropertyType "Name" BrowserCustom = Value Prelude.Text
  set :: PropertyType "Name" BrowserCustom -> BrowserCustom -> BrowserCustom
set PropertyType "Name" BrowserCustom
newValue BrowserCustom {Maybe (Map Text (Value Text))
Maybe (Value Text)
Maybe RecordingConfigProperty
()
Value Text
BrowserNetworkConfigurationProperty
haddock_workaround_ :: BrowserCustom -> ()
description :: BrowserCustom -> Maybe (Value Text)
executionRoleArn :: BrowserCustom -> Maybe (Value Text)
name :: BrowserCustom -> Value Text
networkConfiguration :: BrowserCustom -> BrowserNetworkConfigurationProperty
recordingConfig :: BrowserCustom -> Maybe RecordingConfigProperty
tags :: BrowserCustom -> Maybe (Map Text (Value Text))
haddock_workaround_ :: ()
description :: Maybe (Value Text)
executionRoleArn :: Maybe (Value Text)
name :: Value Text
networkConfiguration :: BrowserNetworkConfigurationProperty
recordingConfig :: Maybe RecordingConfigProperty
tags :: Maybe (Map Text (Value Text))
..}
    = BrowserCustom {name :: Value Text
name = PropertyType "Name" BrowserCustom
Value Text
newValue, Maybe (Map Text (Value Text))
Maybe (Value Text)
Maybe RecordingConfigProperty
()
BrowserNetworkConfigurationProperty
haddock_workaround_ :: ()
description :: Maybe (Value Text)
executionRoleArn :: Maybe (Value Text)
networkConfiguration :: BrowserNetworkConfigurationProperty
recordingConfig :: Maybe RecordingConfigProperty
tags :: Maybe (Map Text (Value Text))
haddock_workaround_ :: ()
description :: Maybe (Value Text)
executionRoleArn :: Maybe (Value Text)
networkConfiguration :: BrowserNetworkConfigurationProperty
recordingConfig :: Maybe RecordingConfigProperty
tags :: Maybe (Map Text (Value Text))
..}
instance Property "NetworkConfiguration" BrowserCustom where
  type PropertyType "NetworkConfiguration" BrowserCustom = BrowserNetworkConfigurationProperty
  set :: PropertyType "NetworkConfiguration" BrowserCustom
-> BrowserCustom -> BrowserCustom
set PropertyType "NetworkConfiguration" BrowserCustom
newValue BrowserCustom {Maybe (Map Text (Value Text))
Maybe (Value Text)
Maybe RecordingConfigProperty
()
Value Text
BrowserNetworkConfigurationProperty
haddock_workaround_ :: BrowserCustom -> ()
description :: BrowserCustom -> Maybe (Value Text)
executionRoleArn :: BrowserCustom -> Maybe (Value Text)
name :: BrowserCustom -> Value Text
networkConfiguration :: BrowserCustom -> BrowserNetworkConfigurationProperty
recordingConfig :: BrowserCustom -> Maybe RecordingConfigProperty
tags :: BrowserCustom -> Maybe (Map Text (Value Text))
haddock_workaround_ :: ()
description :: Maybe (Value Text)
executionRoleArn :: Maybe (Value Text)
name :: Value Text
networkConfiguration :: BrowserNetworkConfigurationProperty
recordingConfig :: Maybe RecordingConfigProperty
tags :: Maybe (Map Text (Value Text))
..}
    = BrowserCustom {networkConfiguration :: BrowserNetworkConfigurationProperty
networkConfiguration = PropertyType "NetworkConfiguration" BrowserCustom
BrowserNetworkConfigurationProperty
newValue, Maybe (Map Text (Value Text))
Maybe (Value Text)
Maybe RecordingConfigProperty
()
Value Text
haddock_workaround_ :: ()
description :: Maybe (Value Text)
executionRoleArn :: Maybe (Value Text)
name :: Value Text
recordingConfig :: Maybe RecordingConfigProperty
tags :: Maybe (Map Text (Value Text))
haddock_workaround_ :: ()
description :: Maybe (Value Text)
executionRoleArn :: Maybe (Value Text)
name :: Value Text
recordingConfig :: Maybe RecordingConfigProperty
tags :: Maybe (Map Text (Value Text))
..}
instance Property "RecordingConfig" BrowserCustom where
  type PropertyType "RecordingConfig" BrowserCustom = RecordingConfigProperty
  set :: PropertyType "RecordingConfig" BrowserCustom
-> BrowserCustom -> BrowserCustom
set PropertyType "RecordingConfig" BrowserCustom
newValue BrowserCustom {Maybe (Map Text (Value Text))
Maybe (Value Text)
Maybe RecordingConfigProperty
()
Value Text
BrowserNetworkConfigurationProperty
haddock_workaround_ :: BrowserCustom -> ()
description :: BrowserCustom -> Maybe (Value Text)
executionRoleArn :: BrowserCustom -> Maybe (Value Text)
name :: BrowserCustom -> Value Text
networkConfiguration :: BrowserCustom -> BrowserNetworkConfigurationProperty
recordingConfig :: BrowserCustom -> Maybe RecordingConfigProperty
tags :: BrowserCustom -> Maybe (Map Text (Value Text))
haddock_workaround_ :: ()
description :: Maybe (Value Text)
executionRoleArn :: Maybe (Value Text)
name :: Value Text
networkConfiguration :: BrowserNetworkConfigurationProperty
recordingConfig :: Maybe RecordingConfigProperty
tags :: Maybe (Map Text (Value Text))
..}
    = BrowserCustom {recordingConfig :: Maybe RecordingConfigProperty
recordingConfig = RecordingConfigProperty -> Maybe RecordingConfigProperty
forall a. a -> Maybe a
forall (f :: * -> *) a. Applicative f => a -> f a
Prelude.pure PropertyType "RecordingConfig" BrowserCustom
RecordingConfigProperty
newValue, Maybe (Map Text (Value Text))
Maybe (Value Text)
()
Value Text
BrowserNetworkConfigurationProperty
haddock_workaround_ :: ()
description :: Maybe (Value Text)
executionRoleArn :: Maybe (Value Text)
name :: Value Text
networkConfiguration :: BrowserNetworkConfigurationProperty
tags :: Maybe (Map Text (Value Text))
haddock_workaround_ :: ()
description :: Maybe (Value Text)
executionRoleArn :: Maybe (Value Text)
name :: Value Text
networkConfiguration :: BrowserNetworkConfigurationProperty
tags :: Maybe (Map Text (Value Text))
..}
instance Property "Tags" BrowserCustom where
  type PropertyType "Tags" BrowserCustom = Prelude.Map Prelude.Text (Value Prelude.Text)
  set :: PropertyType "Tags" BrowserCustom -> BrowserCustom -> BrowserCustom
set PropertyType "Tags" BrowserCustom
newValue BrowserCustom {Maybe (Map Text (Value Text))
Maybe (Value Text)
Maybe RecordingConfigProperty
()
Value Text
BrowserNetworkConfigurationProperty
haddock_workaround_ :: BrowserCustom -> ()
description :: BrowserCustom -> Maybe (Value Text)
executionRoleArn :: BrowserCustom -> Maybe (Value Text)
name :: BrowserCustom -> Value Text
networkConfiguration :: BrowserCustom -> BrowserNetworkConfigurationProperty
recordingConfig :: BrowserCustom -> Maybe RecordingConfigProperty
tags :: BrowserCustom -> Maybe (Map Text (Value Text))
haddock_workaround_ :: ()
description :: Maybe (Value Text)
executionRoleArn :: Maybe (Value Text)
name :: Value Text
networkConfiguration :: BrowserNetworkConfigurationProperty
recordingConfig :: Maybe RecordingConfigProperty
tags :: Maybe (Map Text (Value Text))
..}
    = BrowserCustom {tags :: Maybe (Map Text (Value Text))
tags = 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 "Tags" BrowserCustom
newValue, Maybe (Value Text)
Maybe RecordingConfigProperty
()
Value Text
BrowserNetworkConfigurationProperty
haddock_workaround_ :: ()
description :: Maybe (Value Text)
executionRoleArn :: Maybe (Value Text)
name :: Value Text
networkConfiguration :: BrowserNetworkConfigurationProperty
recordingConfig :: Maybe RecordingConfigProperty
haddock_workaround_ :: ()
description :: Maybe (Value Text)
executionRoleArn :: Maybe (Value Text)
name :: Value Text
networkConfiguration :: BrowserNetworkConfigurationProperty
recordingConfig :: Maybe RecordingConfigProperty
..}