module Stratosphere.Pipes.Pipe.PipeSourceRabbitMQBrokerParametersProperty (
        module Exports, PipeSourceRabbitMQBrokerParametersProperty(..),
        mkPipeSourceRabbitMQBrokerParametersProperty
    ) where
import qualified Data.Aeson as JSON
import qualified Stratosphere.Prelude as Prelude
import Stratosphere.Property
import {-# SOURCE #-} Stratosphere.Pipes.Pipe.MQBrokerAccessCredentialsProperty as Exports
import Stratosphere.ResourceProperties
import Stratosphere.Value
data PipeSourceRabbitMQBrokerParametersProperty
  = -- | See: <http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-pipes-pipe-pipesourcerabbitmqbrokerparameters.html>
    PipeSourceRabbitMQBrokerParametersProperty {PipeSourceRabbitMQBrokerParametersProperty -> ()
haddock_workaround_ :: (),
                                                -- | See: <http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-pipes-pipe-pipesourcerabbitmqbrokerparameters.html#cfn-pipes-pipe-pipesourcerabbitmqbrokerparameters-batchsize>
                                                PipeSourceRabbitMQBrokerParametersProperty -> Maybe (Value Integer)
batchSize :: (Prelude.Maybe (Value Prelude.Integer)),
                                                -- | See: <http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-pipes-pipe-pipesourcerabbitmqbrokerparameters.html#cfn-pipes-pipe-pipesourcerabbitmqbrokerparameters-credentials>
                                                PipeSourceRabbitMQBrokerParametersProperty
-> MQBrokerAccessCredentialsProperty
credentials :: MQBrokerAccessCredentialsProperty,
                                                -- | See: <http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-pipes-pipe-pipesourcerabbitmqbrokerparameters.html#cfn-pipes-pipe-pipesourcerabbitmqbrokerparameters-maximumbatchingwindowinseconds>
                                                PipeSourceRabbitMQBrokerParametersProperty -> Maybe (Value Integer)
maximumBatchingWindowInSeconds :: (Prelude.Maybe (Value Prelude.Integer)),
                                                -- | See: <http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-pipes-pipe-pipesourcerabbitmqbrokerparameters.html#cfn-pipes-pipe-pipesourcerabbitmqbrokerparameters-queuename>
                                                PipeSourceRabbitMQBrokerParametersProperty -> Value Text
queueName :: (Value Prelude.Text),
                                                -- | See: <http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-pipes-pipe-pipesourcerabbitmqbrokerparameters.html#cfn-pipes-pipe-pipesourcerabbitmqbrokerparameters-virtualhost>
                                                PipeSourceRabbitMQBrokerParametersProperty -> Maybe (Value Text)
virtualHost :: (Prelude.Maybe (Value Prelude.Text))}
  deriving stock (PipeSourceRabbitMQBrokerParametersProperty
-> PipeSourceRabbitMQBrokerParametersProperty -> Bool
(PipeSourceRabbitMQBrokerParametersProperty
 -> PipeSourceRabbitMQBrokerParametersProperty -> Bool)
-> (PipeSourceRabbitMQBrokerParametersProperty
    -> PipeSourceRabbitMQBrokerParametersProperty -> Bool)
-> Eq PipeSourceRabbitMQBrokerParametersProperty
forall a. (a -> a -> Bool) -> (a -> a -> Bool) -> Eq a
$c== :: PipeSourceRabbitMQBrokerParametersProperty
-> PipeSourceRabbitMQBrokerParametersProperty -> Bool
== :: PipeSourceRabbitMQBrokerParametersProperty
-> PipeSourceRabbitMQBrokerParametersProperty -> Bool
$c/= :: PipeSourceRabbitMQBrokerParametersProperty
-> PipeSourceRabbitMQBrokerParametersProperty -> Bool
/= :: PipeSourceRabbitMQBrokerParametersProperty
-> PipeSourceRabbitMQBrokerParametersProperty -> Bool
Prelude.Eq, Int -> PipeSourceRabbitMQBrokerParametersProperty -> ShowS
[PipeSourceRabbitMQBrokerParametersProperty] -> ShowS
PipeSourceRabbitMQBrokerParametersProperty -> String
(Int -> PipeSourceRabbitMQBrokerParametersProperty -> ShowS)
-> (PipeSourceRabbitMQBrokerParametersProperty -> String)
-> ([PipeSourceRabbitMQBrokerParametersProperty] -> ShowS)
-> Show PipeSourceRabbitMQBrokerParametersProperty
forall a.
(Int -> a -> ShowS) -> (a -> String) -> ([a] -> ShowS) -> Show a
$cshowsPrec :: Int -> PipeSourceRabbitMQBrokerParametersProperty -> ShowS
showsPrec :: Int -> PipeSourceRabbitMQBrokerParametersProperty -> ShowS
$cshow :: PipeSourceRabbitMQBrokerParametersProperty -> String
show :: PipeSourceRabbitMQBrokerParametersProperty -> String
$cshowList :: [PipeSourceRabbitMQBrokerParametersProperty] -> ShowS
showList :: [PipeSourceRabbitMQBrokerParametersProperty] -> ShowS
Prelude.Show)
mkPipeSourceRabbitMQBrokerParametersProperty ::
  MQBrokerAccessCredentialsProperty
  -> Value Prelude.Text -> PipeSourceRabbitMQBrokerParametersProperty
mkPipeSourceRabbitMQBrokerParametersProperty :: MQBrokerAccessCredentialsProperty
-> Value Text -> PipeSourceRabbitMQBrokerParametersProperty
mkPipeSourceRabbitMQBrokerParametersProperty MQBrokerAccessCredentialsProperty
credentials Value Text
queueName
  = PipeSourceRabbitMQBrokerParametersProperty
      {haddock_workaround_ :: ()
haddock_workaround_ = (), credentials :: MQBrokerAccessCredentialsProperty
credentials = MQBrokerAccessCredentialsProperty
credentials,
       queueName :: Value Text
queueName = Value Text
queueName, batchSize :: Maybe (Value Integer)
batchSize = Maybe (Value Integer)
forall a. Maybe a
Prelude.Nothing,
       maximumBatchingWindowInSeconds :: Maybe (Value Integer)
maximumBatchingWindowInSeconds = Maybe (Value Integer)
forall a. Maybe a
Prelude.Nothing,
       virtualHost :: Maybe (Value Text)
virtualHost = Maybe (Value Text)
forall a. Maybe a
Prelude.Nothing}
instance ToResourceProperties PipeSourceRabbitMQBrokerParametersProperty where
  toResourceProperties :: PipeSourceRabbitMQBrokerParametersProperty -> ResourceProperties
toResourceProperties
    PipeSourceRabbitMQBrokerParametersProperty {Maybe (Value Integer)
Maybe (Value Text)
()
Value Text
MQBrokerAccessCredentialsProperty
haddock_workaround_ :: PipeSourceRabbitMQBrokerParametersProperty -> ()
batchSize :: PipeSourceRabbitMQBrokerParametersProperty -> Maybe (Value Integer)
credentials :: PipeSourceRabbitMQBrokerParametersProperty
-> MQBrokerAccessCredentialsProperty
maximumBatchingWindowInSeconds :: PipeSourceRabbitMQBrokerParametersProperty -> Maybe (Value Integer)
queueName :: PipeSourceRabbitMQBrokerParametersProperty -> Value Text
virtualHost :: PipeSourceRabbitMQBrokerParametersProperty -> Maybe (Value Text)
haddock_workaround_ :: ()
batchSize :: Maybe (Value Integer)
credentials :: MQBrokerAccessCredentialsProperty
maximumBatchingWindowInSeconds :: Maybe (Value Integer)
queueName :: Value Text
virtualHost :: Maybe (Value Text)
..}
    = ResourceProperties
        {awsType :: Text
awsType = Text
"AWS::Pipes::Pipe.PipeSourceRabbitMQBrokerParameters",
         supportsTags :: Bool
supportsTags = Bool
Prelude.False,
         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
"Credentials" Key -> MQBrokerAccessCredentialsProperty -> (Key, Value)
forall v. ToJSON v => Key -> v -> (Key, Value)
forall e kv v. (KeyValue e kv, ToJSON v) => Key -> v -> kv
JSON..= MQBrokerAccessCredentialsProperty
credentials, Key
"QueueName" 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
queueName]
                           ([Maybe (Key, Value)] -> [(Key, Value)]
forall a. [Maybe a] -> [a]
Prelude.catMaybes
                              [Key -> Value Integer -> (Key, Value)
forall v. ToJSON v => Key -> v -> (Key, Value)
forall e kv v. (KeyValue e kv, ToJSON v) => Key -> v -> kv
(JSON..=) Key
"BatchSize" (Value Integer -> (Key, Value))
-> Maybe (Value Integer) -> Maybe (Key, Value)
forall (f :: * -> *) a b. Functor f => (a -> b) -> f a -> f b
Prelude.<$> Maybe (Value Integer)
batchSize,
                               Key -> Value Integer -> (Key, Value)
forall v. ToJSON v => Key -> v -> (Key, Value)
forall e kv v. (KeyValue e kv, ToJSON v) => Key -> v -> kv
(JSON..=) Key
"MaximumBatchingWindowInSeconds"
                                 (Value Integer -> (Key, Value))
-> Maybe (Value Integer) -> Maybe (Key, Value)
forall (f :: * -> *) a b. Functor f => (a -> b) -> f a -> f b
Prelude.<$> Maybe (Value Integer)
maximumBatchingWindowInSeconds,
                               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
"VirtualHost" (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)
virtualHost]))}
instance JSON.ToJSON PipeSourceRabbitMQBrokerParametersProperty where
  toJSON :: PipeSourceRabbitMQBrokerParametersProperty -> Value
toJSON PipeSourceRabbitMQBrokerParametersProperty {Maybe (Value Integer)
Maybe (Value Text)
()
Value Text
MQBrokerAccessCredentialsProperty
haddock_workaround_ :: PipeSourceRabbitMQBrokerParametersProperty -> ()
batchSize :: PipeSourceRabbitMQBrokerParametersProperty -> Maybe (Value Integer)
credentials :: PipeSourceRabbitMQBrokerParametersProperty
-> MQBrokerAccessCredentialsProperty
maximumBatchingWindowInSeconds :: PipeSourceRabbitMQBrokerParametersProperty -> Maybe (Value Integer)
queueName :: PipeSourceRabbitMQBrokerParametersProperty -> Value Text
virtualHost :: PipeSourceRabbitMQBrokerParametersProperty -> Maybe (Value Text)
haddock_workaround_ :: ()
batchSize :: Maybe (Value Integer)
credentials :: MQBrokerAccessCredentialsProperty
maximumBatchingWindowInSeconds :: Maybe (Value Integer)
queueName :: Value Text
virtualHost :: 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
"Credentials" Key -> MQBrokerAccessCredentialsProperty -> (Key, Value)
forall v. ToJSON v => Key -> v -> (Key, Value)
forall e kv v. (KeyValue e kv, ToJSON v) => Key -> v -> kv
JSON..= MQBrokerAccessCredentialsProperty
credentials, Key
"QueueName" 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
queueName]
              ([Maybe (Key, Value)] -> [(Key, Value)]
forall a. [Maybe a] -> [a]
Prelude.catMaybes
                 [Key -> Value Integer -> (Key, Value)
forall v. ToJSON v => Key -> v -> (Key, Value)
forall e kv v. (KeyValue e kv, ToJSON v) => Key -> v -> kv
(JSON..=) Key
"BatchSize" (Value Integer -> (Key, Value))
-> Maybe (Value Integer) -> Maybe (Key, Value)
forall (f :: * -> *) a b. Functor f => (a -> b) -> f a -> f b
Prelude.<$> Maybe (Value Integer)
batchSize,
                  Key -> Value Integer -> (Key, Value)
forall v. ToJSON v => Key -> v -> (Key, Value)
forall e kv v. (KeyValue e kv, ToJSON v) => Key -> v -> kv
(JSON..=) Key
"MaximumBatchingWindowInSeconds"
                    (Value Integer -> (Key, Value))
-> Maybe (Value Integer) -> Maybe (Key, Value)
forall (f :: * -> *) a b. Functor f => (a -> b) -> f a -> f b
Prelude.<$> Maybe (Value Integer)
maximumBatchingWindowInSeconds,
                  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
"VirtualHost" (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)
virtualHost])))
instance Property "BatchSize" PipeSourceRabbitMQBrokerParametersProperty where
  type PropertyType "BatchSize" PipeSourceRabbitMQBrokerParametersProperty = Value Prelude.Integer
  set :: PropertyType "BatchSize" PipeSourceRabbitMQBrokerParametersProperty
-> PipeSourceRabbitMQBrokerParametersProperty
-> PipeSourceRabbitMQBrokerParametersProperty
set PropertyType "BatchSize" PipeSourceRabbitMQBrokerParametersProperty
newValue PipeSourceRabbitMQBrokerParametersProperty {Maybe (Value Integer)
Maybe (Value Text)
()
Value Text
MQBrokerAccessCredentialsProperty
haddock_workaround_ :: PipeSourceRabbitMQBrokerParametersProperty -> ()
batchSize :: PipeSourceRabbitMQBrokerParametersProperty -> Maybe (Value Integer)
credentials :: PipeSourceRabbitMQBrokerParametersProperty
-> MQBrokerAccessCredentialsProperty
maximumBatchingWindowInSeconds :: PipeSourceRabbitMQBrokerParametersProperty -> Maybe (Value Integer)
queueName :: PipeSourceRabbitMQBrokerParametersProperty -> Value Text
virtualHost :: PipeSourceRabbitMQBrokerParametersProperty -> Maybe (Value Text)
haddock_workaround_ :: ()
batchSize :: Maybe (Value Integer)
credentials :: MQBrokerAccessCredentialsProperty
maximumBatchingWindowInSeconds :: Maybe (Value Integer)
queueName :: Value Text
virtualHost :: Maybe (Value Text)
..}
    = PipeSourceRabbitMQBrokerParametersProperty
        {batchSize :: Maybe (Value Integer)
batchSize = Value Integer -> Maybe (Value Integer)
forall a. a -> Maybe a
forall (f :: * -> *) a. Applicative f => a -> f a
Prelude.pure PropertyType "BatchSize" PipeSourceRabbitMQBrokerParametersProperty
Value Integer
newValue, Maybe (Value Integer)
Maybe (Value Text)
()
Value Text
MQBrokerAccessCredentialsProperty
haddock_workaround_ :: ()
credentials :: MQBrokerAccessCredentialsProperty
maximumBatchingWindowInSeconds :: Maybe (Value Integer)
queueName :: Value Text
virtualHost :: Maybe (Value Text)
haddock_workaround_ :: ()
credentials :: MQBrokerAccessCredentialsProperty
maximumBatchingWindowInSeconds :: Maybe (Value Integer)
queueName :: Value Text
virtualHost :: Maybe (Value Text)
..}
instance Property "Credentials" PipeSourceRabbitMQBrokerParametersProperty where
  type PropertyType "Credentials" PipeSourceRabbitMQBrokerParametersProperty = MQBrokerAccessCredentialsProperty
  set :: PropertyType
  "Credentials" PipeSourceRabbitMQBrokerParametersProperty
-> PipeSourceRabbitMQBrokerParametersProperty
-> PipeSourceRabbitMQBrokerParametersProperty
set PropertyType
  "Credentials" PipeSourceRabbitMQBrokerParametersProperty
newValue PipeSourceRabbitMQBrokerParametersProperty {Maybe (Value Integer)
Maybe (Value Text)
()
Value Text
MQBrokerAccessCredentialsProperty
haddock_workaround_ :: PipeSourceRabbitMQBrokerParametersProperty -> ()
batchSize :: PipeSourceRabbitMQBrokerParametersProperty -> Maybe (Value Integer)
credentials :: PipeSourceRabbitMQBrokerParametersProperty
-> MQBrokerAccessCredentialsProperty
maximumBatchingWindowInSeconds :: PipeSourceRabbitMQBrokerParametersProperty -> Maybe (Value Integer)
queueName :: PipeSourceRabbitMQBrokerParametersProperty -> Value Text
virtualHost :: PipeSourceRabbitMQBrokerParametersProperty -> Maybe (Value Text)
haddock_workaround_ :: ()
batchSize :: Maybe (Value Integer)
credentials :: MQBrokerAccessCredentialsProperty
maximumBatchingWindowInSeconds :: Maybe (Value Integer)
queueName :: Value Text
virtualHost :: Maybe (Value Text)
..}
    = PipeSourceRabbitMQBrokerParametersProperty
        {credentials :: MQBrokerAccessCredentialsProperty
credentials = PropertyType
  "Credentials" PipeSourceRabbitMQBrokerParametersProperty
MQBrokerAccessCredentialsProperty
newValue, Maybe (Value Integer)
Maybe (Value Text)
()
Value Text
haddock_workaround_ :: ()
batchSize :: Maybe (Value Integer)
maximumBatchingWindowInSeconds :: Maybe (Value Integer)
queueName :: Value Text
virtualHost :: Maybe (Value Text)
haddock_workaround_ :: ()
batchSize :: Maybe (Value Integer)
maximumBatchingWindowInSeconds :: Maybe (Value Integer)
queueName :: Value Text
virtualHost :: Maybe (Value Text)
..}
instance Property "MaximumBatchingWindowInSeconds" PipeSourceRabbitMQBrokerParametersProperty where
  type PropertyType "MaximumBatchingWindowInSeconds" PipeSourceRabbitMQBrokerParametersProperty = Value Prelude.Integer
  set :: PropertyType
  "MaximumBatchingWindowInSeconds"
  PipeSourceRabbitMQBrokerParametersProperty
-> PipeSourceRabbitMQBrokerParametersProperty
-> PipeSourceRabbitMQBrokerParametersProperty
set PropertyType
  "MaximumBatchingWindowInSeconds"
  PipeSourceRabbitMQBrokerParametersProperty
newValue PipeSourceRabbitMQBrokerParametersProperty {Maybe (Value Integer)
Maybe (Value Text)
()
Value Text
MQBrokerAccessCredentialsProperty
haddock_workaround_ :: PipeSourceRabbitMQBrokerParametersProperty -> ()
batchSize :: PipeSourceRabbitMQBrokerParametersProperty -> Maybe (Value Integer)
credentials :: PipeSourceRabbitMQBrokerParametersProperty
-> MQBrokerAccessCredentialsProperty
maximumBatchingWindowInSeconds :: PipeSourceRabbitMQBrokerParametersProperty -> Maybe (Value Integer)
queueName :: PipeSourceRabbitMQBrokerParametersProperty -> Value Text
virtualHost :: PipeSourceRabbitMQBrokerParametersProperty -> Maybe (Value Text)
haddock_workaround_ :: ()
batchSize :: Maybe (Value Integer)
credentials :: MQBrokerAccessCredentialsProperty
maximumBatchingWindowInSeconds :: Maybe (Value Integer)
queueName :: Value Text
virtualHost :: Maybe (Value Text)
..}
    = PipeSourceRabbitMQBrokerParametersProperty
        {maximumBatchingWindowInSeconds :: Maybe (Value Integer)
maximumBatchingWindowInSeconds = Value Integer -> Maybe (Value Integer)
forall a. a -> Maybe a
forall (f :: * -> *) a. Applicative f => a -> f a
Prelude.pure PropertyType
  "MaximumBatchingWindowInSeconds"
  PipeSourceRabbitMQBrokerParametersProperty
Value Integer
newValue, Maybe (Value Integer)
Maybe (Value Text)
()
Value Text
MQBrokerAccessCredentialsProperty
haddock_workaround_ :: ()
batchSize :: Maybe (Value Integer)
credentials :: MQBrokerAccessCredentialsProperty
queueName :: Value Text
virtualHost :: Maybe (Value Text)
haddock_workaround_ :: ()
batchSize :: Maybe (Value Integer)
credentials :: MQBrokerAccessCredentialsProperty
queueName :: Value Text
virtualHost :: Maybe (Value Text)
..}
instance Property "QueueName" PipeSourceRabbitMQBrokerParametersProperty where
  type PropertyType "QueueName" PipeSourceRabbitMQBrokerParametersProperty = Value Prelude.Text
  set :: PropertyType "QueueName" PipeSourceRabbitMQBrokerParametersProperty
-> PipeSourceRabbitMQBrokerParametersProperty
-> PipeSourceRabbitMQBrokerParametersProperty
set PropertyType "QueueName" PipeSourceRabbitMQBrokerParametersProperty
newValue PipeSourceRabbitMQBrokerParametersProperty {Maybe (Value Integer)
Maybe (Value Text)
()
Value Text
MQBrokerAccessCredentialsProperty
haddock_workaround_ :: PipeSourceRabbitMQBrokerParametersProperty -> ()
batchSize :: PipeSourceRabbitMQBrokerParametersProperty -> Maybe (Value Integer)
credentials :: PipeSourceRabbitMQBrokerParametersProperty
-> MQBrokerAccessCredentialsProperty
maximumBatchingWindowInSeconds :: PipeSourceRabbitMQBrokerParametersProperty -> Maybe (Value Integer)
queueName :: PipeSourceRabbitMQBrokerParametersProperty -> Value Text
virtualHost :: PipeSourceRabbitMQBrokerParametersProperty -> Maybe (Value Text)
haddock_workaround_ :: ()
batchSize :: Maybe (Value Integer)
credentials :: MQBrokerAccessCredentialsProperty
maximumBatchingWindowInSeconds :: Maybe (Value Integer)
queueName :: Value Text
virtualHost :: Maybe (Value Text)
..}
    = PipeSourceRabbitMQBrokerParametersProperty
        {queueName :: Value Text
queueName = PropertyType "QueueName" PipeSourceRabbitMQBrokerParametersProperty
Value Text
newValue, Maybe (Value Integer)
Maybe (Value Text)
()
MQBrokerAccessCredentialsProperty
haddock_workaround_ :: ()
batchSize :: Maybe (Value Integer)
credentials :: MQBrokerAccessCredentialsProperty
maximumBatchingWindowInSeconds :: Maybe (Value Integer)
virtualHost :: Maybe (Value Text)
haddock_workaround_ :: ()
batchSize :: Maybe (Value Integer)
credentials :: MQBrokerAccessCredentialsProperty
maximumBatchingWindowInSeconds :: Maybe (Value Integer)
virtualHost :: Maybe (Value Text)
..}
instance Property "VirtualHost" PipeSourceRabbitMQBrokerParametersProperty where
  type PropertyType "VirtualHost" PipeSourceRabbitMQBrokerParametersProperty = Value Prelude.Text
  set :: PropertyType
  "VirtualHost" PipeSourceRabbitMQBrokerParametersProperty
-> PipeSourceRabbitMQBrokerParametersProperty
-> PipeSourceRabbitMQBrokerParametersProperty
set PropertyType
  "VirtualHost" PipeSourceRabbitMQBrokerParametersProperty
newValue PipeSourceRabbitMQBrokerParametersProperty {Maybe (Value Integer)
Maybe (Value Text)
()
Value Text
MQBrokerAccessCredentialsProperty
haddock_workaround_ :: PipeSourceRabbitMQBrokerParametersProperty -> ()
batchSize :: PipeSourceRabbitMQBrokerParametersProperty -> Maybe (Value Integer)
credentials :: PipeSourceRabbitMQBrokerParametersProperty
-> MQBrokerAccessCredentialsProperty
maximumBatchingWindowInSeconds :: PipeSourceRabbitMQBrokerParametersProperty -> Maybe (Value Integer)
queueName :: PipeSourceRabbitMQBrokerParametersProperty -> Value Text
virtualHost :: PipeSourceRabbitMQBrokerParametersProperty -> Maybe (Value Text)
haddock_workaround_ :: ()
batchSize :: Maybe (Value Integer)
credentials :: MQBrokerAccessCredentialsProperty
maximumBatchingWindowInSeconds :: Maybe (Value Integer)
queueName :: Value Text
virtualHost :: Maybe (Value Text)
..}
    = PipeSourceRabbitMQBrokerParametersProperty
        {virtualHost :: Maybe (Value Text)
virtualHost = Value Text -> Maybe (Value Text)
forall a. a -> Maybe a
forall (f :: * -> *) a. Applicative f => a -> f a
Prelude.pure PropertyType
  "VirtualHost" PipeSourceRabbitMQBrokerParametersProperty
Value Text
newValue, Maybe (Value Integer)
()
Value Text
MQBrokerAccessCredentialsProperty
haddock_workaround_ :: ()
batchSize :: Maybe (Value Integer)
credentials :: MQBrokerAccessCredentialsProperty
maximumBatchingWindowInSeconds :: Maybe (Value Integer)
queueName :: Value Text
haddock_workaround_ :: ()
batchSize :: Maybe (Value Integer)
credentials :: MQBrokerAccessCredentialsProperty
maximumBatchingWindowInSeconds :: Maybe (Value Integer)
queueName :: Value Text
..}