module Stratosphere.OSIS.Pipeline (
        module Exports, Pipeline(..), mkPipeline
    ) where
import qualified Data.Aeson as JSON
import qualified Stratosphere.Prelude as Prelude
import Stratosphere.Property
import {-# SOURCE #-} Stratosphere.OSIS.Pipeline.BufferOptionsProperty as Exports
import {-# SOURCE #-} Stratosphere.OSIS.Pipeline.EncryptionAtRestOptionsProperty as Exports
import {-# SOURCE #-} Stratosphere.OSIS.Pipeline.LogPublishingOptionsProperty as Exports
import {-# SOURCE #-} Stratosphere.OSIS.Pipeline.ResourcePolicyProperty as Exports
import {-# SOURCE #-} Stratosphere.OSIS.Pipeline.VpcOptionsProperty as Exports
import Stratosphere.ResourceProperties
import Stratosphere.Tag
import Stratosphere.Value
data Pipeline
  = -- | See: <http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-osis-pipeline.html>
    Pipeline {Pipeline -> ()
haddock_workaround_ :: (),
              -- | See: <http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-osis-pipeline.html#cfn-osis-pipeline-bufferoptions>
              Pipeline -> Maybe BufferOptionsProperty
bufferOptions :: (Prelude.Maybe BufferOptionsProperty),
              -- | See: <http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-osis-pipeline.html#cfn-osis-pipeline-encryptionatrestoptions>
              Pipeline -> Maybe EncryptionAtRestOptionsProperty
encryptionAtRestOptions :: (Prelude.Maybe EncryptionAtRestOptionsProperty),
              -- | See: <http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-osis-pipeline.html#cfn-osis-pipeline-logpublishingoptions>
              Pipeline -> Maybe LogPublishingOptionsProperty
logPublishingOptions :: (Prelude.Maybe LogPublishingOptionsProperty),
              -- | See: <http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-osis-pipeline.html#cfn-osis-pipeline-maxunits>
              Pipeline -> Value Integer
maxUnits :: (Value Prelude.Integer),
              -- | See: <http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-osis-pipeline.html#cfn-osis-pipeline-minunits>
              Pipeline -> Value Integer
minUnits :: (Value Prelude.Integer),
              -- | See: <http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-osis-pipeline.html#cfn-osis-pipeline-pipelineconfigurationbody>
              Pipeline -> Value Text
pipelineConfigurationBody :: (Value Prelude.Text),
              -- | See: <http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-osis-pipeline.html#cfn-osis-pipeline-pipelinename>
              Pipeline -> Value Text
pipelineName :: (Value Prelude.Text),
              -- | See: <http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-osis-pipeline.html#cfn-osis-pipeline-pipelinerolearn>
              Pipeline -> Maybe (Value Text)
pipelineRoleArn :: (Prelude.Maybe (Value Prelude.Text)),
              -- | See: <http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-osis-pipeline.html#cfn-osis-pipeline-resourcepolicy>
              Pipeline -> Maybe ResourcePolicyProperty
resourcePolicy :: (Prelude.Maybe ResourcePolicyProperty),
              -- | See: <http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-osis-pipeline.html#cfn-osis-pipeline-tags>
              Pipeline -> Maybe [Tag]
tags :: (Prelude.Maybe [Tag]),
              -- | See: <http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-osis-pipeline.html#cfn-osis-pipeline-vpcoptions>
              Pipeline -> Maybe VpcOptionsProperty
vpcOptions :: (Prelude.Maybe VpcOptionsProperty)}
  deriving stock (Pipeline -> Pipeline -> Bool
(Pipeline -> Pipeline -> Bool)
-> (Pipeline -> Pipeline -> Bool) -> Eq Pipeline
forall a. (a -> a -> Bool) -> (a -> a -> Bool) -> Eq a
$c== :: Pipeline -> Pipeline -> Bool
== :: Pipeline -> Pipeline -> Bool
$c/= :: Pipeline -> Pipeline -> Bool
/= :: Pipeline -> Pipeline -> Bool
Prelude.Eq, Int -> Pipeline -> ShowS
[Pipeline] -> ShowS
Pipeline -> String
(Int -> Pipeline -> ShowS)
-> (Pipeline -> String) -> ([Pipeline] -> ShowS) -> Show Pipeline
forall a.
(Int -> a -> ShowS) -> (a -> String) -> ([a] -> ShowS) -> Show a
$cshowsPrec :: Int -> Pipeline -> ShowS
showsPrec :: Int -> Pipeline -> ShowS
$cshow :: Pipeline -> String
show :: Pipeline -> String
$cshowList :: [Pipeline] -> ShowS
showList :: [Pipeline] -> ShowS
Prelude.Show)
mkPipeline ::
  Value Prelude.Integer
  -> Value Prelude.Integer
     -> Value Prelude.Text -> Value Prelude.Text -> Pipeline
mkPipeline :: Value Integer
-> Value Integer -> Value Text -> Value Text -> Pipeline
mkPipeline Value Integer
maxUnits Value Integer
minUnits Value Text
pipelineConfigurationBody Value Text
pipelineName
  = Pipeline
      {haddock_workaround_ :: ()
haddock_workaround_ = (), maxUnits :: Value Integer
maxUnits = Value Integer
maxUnits,
       minUnits :: Value Integer
minUnits = Value Integer
minUnits,
       pipelineConfigurationBody :: Value Text
pipelineConfigurationBody = Value Text
pipelineConfigurationBody,
       pipelineName :: Value Text
pipelineName = Value Text
pipelineName, bufferOptions :: Maybe BufferOptionsProperty
bufferOptions = Maybe BufferOptionsProperty
forall a. Maybe a
Prelude.Nothing,
       encryptionAtRestOptions :: Maybe EncryptionAtRestOptionsProperty
encryptionAtRestOptions = Maybe EncryptionAtRestOptionsProperty
forall a. Maybe a
Prelude.Nothing,
       logPublishingOptions :: Maybe LogPublishingOptionsProperty
logPublishingOptions = Maybe LogPublishingOptionsProperty
forall a. Maybe a
Prelude.Nothing,
       pipelineRoleArn :: Maybe (Value Text)
pipelineRoleArn = Maybe (Value Text)
forall a. Maybe a
Prelude.Nothing,
       resourcePolicy :: Maybe ResourcePolicyProperty
resourcePolicy = Maybe ResourcePolicyProperty
forall a. Maybe a
Prelude.Nothing, tags :: Maybe [Tag]
tags = Maybe [Tag]
forall a. Maybe a
Prelude.Nothing,
       vpcOptions :: Maybe VpcOptionsProperty
vpcOptions = Maybe VpcOptionsProperty
forall a. Maybe a
Prelude.Nothing}
instance ToResourceProperties Pipeline where
  toResourceProperties :: Pipeline -> ResourceProperties
toResourceProperties Pipeline {Maybe [Tag]
Maybe (Value Text)
Maybe BufferOptionsProperty
Maybe EncryptionAtRestOptionsProperty
Maybe LogPublishingOptionsProperty
Maybe ResourcePolicyProperty
Maybe VpcOptionsProperty
()
Value Integer
Value Text
haddock_workaround_ :: Pipeline -> ()
bufferOptions :: Pipeline -> Maybe BufferOptionsProperty
encryptionAtRestOptions :: Pipeline -> Maybe EncryptionAtRestOptionsProperty
logPublishingOptions :: Pipeline -> Maybe LogPublishingOptionsProperty
maxUnits :: Pipeline -> Value Integer
minUnits :: Pipeline -> Value Integer
pipelineConfigurationBody :: Pipeline -> Value Text
pipelineName :: Pipeline -> Value Text
pipelineRoleArn :: Pipeline -> Maybe (Value Text)
resourcePolicy :: Pipeline -> Maybe ResourcePolicyProperty
tags :: Pipeline -> Maybe [Tag]
vpcOptions :: Pipeline -> Maybe VpcOptionsProperty
haddock_workaround_ :: ()
bufferOptions :: Maybe BufferOptionsProperty
encryptionAtRestOptions :: Maybe EncryptionAtRestOptionsProperty
logPublishingOptions :: Maybe LogPublishingOptionsProperty
maxUnits :: Value Integer
minUnits :: Value Integer
pipelineConfigurationBody :: Value Text
pipelineName :: Value Text
pipelineRoleArn :: Maybe (Value Text)
resourcePolicy :: Maybe ResourcePolicyProperty
tags :: Maybe [Tag]
vpcOptions :: Maybe VpcOptionsProperty
..}
    = ResourceProperties
        {awsType :: Text
awsType = Text
"AWS::OSIS::Pipeline", 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
"MaxUnits" 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..= Value Integer
maxUnits, Key
"MinUnits" 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..= Value Integer
minUnits,
                            Key
"PipelineConfigurationBody" 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
pipelineConfigurationBody,
                            Key
"PipelineName" 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
pipelineName]
                           ([Maybe (Key, Value)] -> [(Key, Value)]
forall a. [Maybe a] -> [a]
Prelude.catMaybes
                              [Key -> BufferOptionsProperty -> (Key, Value)
forall v. ToJSON v => Key -> v -> (Key, Value)
forall e kv v. (KeyValue e kv, ToJSON v) => Key -> v -> kv
(JSON..=) Key
"BufferOptions" (BufferOptionsProperty -> (Key, Value))
-> Maybe BufferOptionsProperty -> Maybe (Key, Value)
forall (f :: * -> *) a b. Functor f => (a -> b) -> f a -> f b
Prelude.<$> Maybe BufferOptionsProperty
bufferOptions,
                               Key -> EncryptionAtRestOptionsProperty -> (Key, Value)
forall v. ToJSON v => Key -> v -> (Key, Value)
forall e kv v. (KeyValue e kv, ToJSON v) => Key -> v -> kv
(JSON..=) Key
"EncryptionAtRestOptions"
                                 (EncryptionAtRestOptionsProperty -> (Key, Value))
-> Maybe EncryptionAtRestOptionsProperty -> Maybe (Key, Value)
forall (f :: * -> *) a b. Functor f => (a -> b) -> f a -> f b
Prelude.<$> Maybe EncryptionAtRestOptionsProperty
encryptionAtRestOptions,
                               Key -> LogPublishingOptionsProperty -> (Key, Value)
forall v. ToJSON v => Key -> v -> (Key, Value)
forall e kv v. (KeyValue e kv, ToJSON v) => Key -> v -> kv
(JSON..=) Key
"LogPublishingOptions" (LogPublishingOptionsProperty -> (Key, Value))
-> Maybe LogPublishingOptionsProperty -> Maybe (Key, Value)
forall (f :: * -> *) a b. Functor f => (a -> b) -> f a -> f b
Prelude.<$> Maybe LogPublishingOptionsProperty
logPublishingOptions,
                               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
"PipelineRoleArn" (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)
pipelineRoleArn,
                               Key -> ResourcePolicyProperty -> (Key, Value)
forall v. ToJSON v => Key -> v -> (Key, Value)
forall e kv v. (KeyValue e kv, ToJSON v) => Key -> v -> kv
(JSON..=) Key
"ResourcePolicy" (ResourcePolicyProperty -> (Key, Value))
-> Maybe ResourcePolicyProperty -> Maybe (Key, Value)
forall (f :: * -> *) a b. Functor f => (a -> b) -> f a -> f b
Prelude.<$> Maybe ResourcePolicyProperty
resourcePolicy,
                               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 -> VpcOptionsProperty -> (Key, Value)
forall v. ToJSON v => Key -> v -> (Key, Value)
forall e kv v. (KeyValue e kv, ToJSON v) => Key -> v -> kv
(JSON..=) Key
"VpcOptions" (VpcOptionsProperty -> (Key, Value))
-> Maybe VpcOptionsProperty -> Maybe (Key, Value)
forall (f :: * -> *) a b. Functor f => (a -> b) -> f a -> f b
Prelude.<$> Maybe VpcOptionsProperty
vpcOptions]))}
instance JSON.ToJSON Pipeline where
  toJSON :: Pipeline -> Value
toJSON Pipeline {Maybe [Tag]
Maybe (Value Text)
Maybe BufferOptionsProperty
Maybe EncryptionAtRestOptionsProperty
Maybe LogPublishingOptionsProperty
Maybe ResourcePolicyProperty
Maybe VpcOptionsProperty
()
Value Integer
Value Text
haddock_workaround_ :: Pipeline -> ()
bufferOptions :: Pipeline -> Maybe BufferOptionsProperty
encryptionAtRestOptions :: Pipeline -> Maybe EncryptionAtRestOptionsProperty
logPublishingOptions :: Pipeline -> Maybe LogPublishingOptionsProperty
maxUnits :: Pipeline -> Value Integer
minUnits :: Pipeline -> Value Integer
pipelineConfigurationBody :: Pipeline -> Value Text
pipelineName :: Pipeline -> Value Text
pipelineRoleArn :: Pipeline -> Maybe (Value Text)
resourcePolicy :: Pipeline -> Maybe ResourcePolicyProperty
tags :: Pipeline -> Maybe [Tag]
vpcOptions :: Pipeline -> Maybe VpcOptionsProperty
haddock_workaround_ :: ()
bufferOptions :: Maybe BufferOptionsProperty
encryptionAtRestOptions :: Maybe EncryptionAtRestOptionsProperty
logPublishingOptions :: Maybe LogPublishingOptionsProperty
maxUnits :: Value Integer
minUnits :: Value Integer
pipelineConfigurationBody :: Value Text
pipelineName :: Value Text
pipelineRoleArn :: Maybe (Value Text)
resourcePolicy :: Maybe ResourcePolicyProperty
tags :: Maybe [Tag]
vpcOptions :: Maybe VpcOptionsProperty
..}
    = [(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
"MaxUnits" 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..= Value Integer
maxUnits, Key
"MinUnits" 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..= Value Integer
minUnits,
               Key
"PipelineConfigurationBody" 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
pipelineConfigurationBody,
               Key
"PipelineName" 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
pipelineName]
              ([Maybe (Key, Value)] -> [(Key, Value)]
forall a. [Maybe a] -> [a]
Prelude.catMaybes
                 [Key -> BufferOptionsProperty -> (Key, Value)
forall v. ToJSON v => Key -> v -> (Key, Value)
forall e kv v. (KeyValue e kv, ToJSON v) => Key -> v -> kv
(JSON..=) Key
"BufferOptions" (BufferOptionsProperty -> (Key, Value))
-> Maybe BufferOptionsProperty -> Maybe (Key, Value)
forall (f :: * -> *) a b. Functor f => (a -> b) -> f a -> f b
Prelude.<$> Maybe BufferOptionsProperty
bufferOptions,
                  Key -> EncryptionAtRestOptionsProperty -> (Key, Value)
forall v. ToJSON v => Key -> v -> (Key, Value)
forall e kv v. (KeyValue e kv, ToJSON v) => Key -> v -> kv
(JSON..=) Key
"EncryptionAtRestOptions"
                    (EncryptionAtRestOptionsProperty -> (Key, Value))
-> Maybe EncryptionAtRestOptionsProperty -> Maybe (Key, Value)
forall (f :: * -> *) a b. Functor f => (a -> b) -> f a -> f b
Prelude.<$> Maybe EncryptionAtRestOptionsProperty
encryptionAtRestOptions,
                  Key -> LogPublishingOptionsProperty -> (Key, Value)
forall v. ToJSON v => Key -> v -> (Key, Value)
forall e kv v. (KeyValue e kv, ToJSON v) => Key -> v -> kv
(JSON..=) Key
"LogPublishingOptions" (LogPublishingOptionsProperty -> (Key, Value))
-> Maybe LogPublishingOptionsProperty -> Maybe (Key, Value)
forall (f :: * -> *) a b. Functor f => (a -> b) -> f a -> f b
Prelude.<$> Maybe LogPublishingOptionsProperty
logPublishingOptions,
                  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
"PipelineRoleArn" (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)
pipelineRoleArn,
                  Key -> ResourcePolicyProperty -> (Key, Value)
forall v. ToJSON v => Key -> v -> (Key, Value)
forall e kv v. (KeyValue e kv, ToJSON v) => Key -> v -> kv
(JSON..=) Key
"ResourcePolicy" (ResourcePolicyProperty -> (Key, Value))
-> Maybe ResourcePolicyProperty -> Maybe (Key, Value)
forall (f :: * -> *) a b. Functor f => (a -> b) -> f a -> f b
Prelude.<$> Maybe ResourcePolicyProperty
resourcePolicy,
                  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 -> VpcOptionsProperty -> (Key, Value)
forall v. ToJSON v => Key -> v -> (Key, Value)
forall e kv v. (KeyValue e kv, ToJSON v) => Key -> v -> kv
(JSON..=) Key
"VpcOptions" (VpcOptionsProperty -> (Key, Value))
-> Maybe VpcOptionsProperty -> Maybe (Key, Value)
forall (f :: * -> *) a b. Functor f => (a -> b) -> f a -> f b
Prelude.<$> Maybe VpcOptionsProperty
vpcOptions])))
instance Property "BufferOptions" Pipeline where
  type PropertyType "BufferOptions" Pipeline = BufferOptionsProperty
  set :: PropertyType "BufferOptions" Pipeline -> Pipeline -> Pipeline
set PropertyType "BufferOptions" Pipeline
newValue Pipeline {Maybe [Tag]
Maybe (Value Text)
Maybe BufferOptionsProperty
Maybe EncryptionAtRestOptionsProperty
Maybe LogPublishingOptionsProperty
Maybe ResourcePolicyProperty
Maybe VpcOptionsProperty
()
Value Integer
Value Text
haddock_workaround_ :: Pipeline -> ()
bufferOptions :: Pipeline -> Maybe BufferOptionsProperty
encryptionAtRestOptions :: Pipeline -> Maybe EncryptionAtRestOptionsProperty
logPublishingOptions :: Pipeline -> Maybe LogPublishingOptionsProperty
maxUnits :: Pipeline -> Value Integer
minUnits :: Pipeline -> Value Integer
pipelineConfigurationBody :: Pipeline -> Value Text
pipelineName :: Pipeline -> Value Text
pipelineRoleArn :: Pipeline -> Maybe (Value Text)
resourcePolicy :: Pipeline -> Maybe ResourcePolicyProperty
tags :: Pipeline -> Maybe [Tag]
vpcOptions :: Pipeline -> Maybe VpcOptionsProperty
haddock_workaround_ :: ()
bufferOptions :: Maybe BufferOptionsProperty
encryptionAtRestOptions :: Maybe EncryptionAtRestOptionsProperty
logPublishingOptions :: Maybe LogPublishingOptionsProperty
maxUnits :: Value Integer
minUnits :: Value Integer
pipelineConfigurationBody :: Value Text
pipelineName :: Value Text
pipelineRoleArn :: Maybe (Value Text)
resourcePolicy :: Maybe ResourcePolicyProperty
tags :: Maybe [Tag]
vpcOptions :: Maybe VpcOptionsProperty
..}
    = Pipeline {bufferOptions :: Maybe BufferOptionsProperty
bufferOptions = BufferOptionsProperty -> Maybe BufferOptionsProperty
forall a. a -> Maybe a
forall (f :: * -> *) a. Applicative f => a -> f a
Prelude.pure PropertyType "BufferOptions" Pipeline
BufferOptionsProperty
newValue, Maybe [Tag]
Maybe (Value Text)
Maybe EncryptionAtRestOptionsProperty
Maybe LogPublishingOptionsProperty
Maybe ResourcePolicyProperty
Maybe VpcOptionsProperty
()
Value Integer
Value Text
haddock_workaround_ :: ()
encryptionAtRestOptions :: Maybe EncryptionAtRestOptionsProperty
logPublishingOptions :: Maybe LogPublishingOptionsProperty
maxUnits :: Value Integer
minUnits :: Value Integer
pipelineConfigurationBody :: Value Text
pipelineName :: Value Text
pipelineRoleArn :: Maybe (Value Text)
resourcePolicy :: Maybe ResourcePolicyProperty
tags :: Maybe [Tag]
vpcOptions :: Maybe VpcOptionsProperty
haddock_workaround_ :: ()
encryptionAtRestOptions :: Maybe EncryptionAtRestOptionsProperty
logPublishingOptions :: Maybe LogPublishingOptionsProperty
maxUnits :: Value Integer
minUnits :: Value Integer
pipelineConfigurationBody :: Value Text
pipelineName :: Value Text
pipelineRoleArn :: Maybe (Value Text)
resourcePolicy :: Maybe ResourcePolicyProperty
tags :: Maybe [Tag]
vpcOptions :: Maybe VpcOptionsProperty
..}
instance Property "EncryptionAtRestOptions" Pipeline where
  type PropertyType "EncryptionAtRestOptions" Pipeline = EncryptionAtRestOptionsProperty
  set :: PropertyType "EncryptionAtRestOptions" Pipeline
-> Pipeline -> Pipeline
set PropertyType "EncryptionAtRestOptions" Pipeline
newValue Pipeline {Maybe [Tag]
Maybe (Value Text)
Maybe BufferOptionsProperty
Maybe EncryptionAtRestOptionsProperty
Maybe LogPublishingOptionsProperty
Maybe ResourcePolicyProperty
Maybe VpcOptionsProperty
()
Value Integer
Value Text
haddock_workaround_ :: Pipeline -> ()
bufferOptions :: Pipeline -> Maybe BufferOptionsProperty
encryptionAtRestOptions :: Pipeline -> Maybe EncryptionAtRestOptionsProperty
logPublishingOptions :: Pipeline -> Maybe LogPublishingOptionsProperty
maxUnits :: Pipeline -> Value Integer
minUnits :: Pipeline -> Value Integer
pipelineConfigurationBody :: Pipeline -> Value Text
pipelineName :: Pipeline -> Value Text
pipelineRoleArn :: Pipeline -> Maybe (Value Text)
resourcePolicy :: Pipeline -> Maybe ResourcePolicyProperty
tags :: Pipeline -> Maybe [Tag]
vpcOptions :: Pipeline -> Maybe VpcOptionsProperty
haddock_workaround_ :: ()
bufferOptions :: Maybe BufferOptionsProperty
encryptionAtRestOptions :: Maybe EncryptionAtRestOptionsProperty
logPublishingOptions :: Maybe LogPublishingOptionsProperty
maxUnits :: Value Integer
minUnits :: Value Integer
pipelineConfigurationBody :: Value Text
pipelineName :: Value Text
pipelineRoleArn :: Maybe (Value Text)
resourcePolicy :: Maybe ResourcePolicyProperty
tags :: Maybe [Tag]
vpcOptions :: Maybe VpcOptionsProperty
..}
    = Pipeline {encryptionAtRestOptions :: Maybe EncryptionAtRestOptionsProperty
encryptionAtRestOptions = EncryptionAtRestOptionsProperty
-> Maybe EncryptionAtRestOptionsProperty
forall a. a -> Maybe a
forall (f :: * -> *) a. Applicative f => a -> f a
Prelude.pure PropertyType "EncryptionAtRestOptions" Pipeline
EncryptionAtRestOptionsProperty
newValue, Maybe [Tag]
Maybe (Value Text)
Maybe BufferOptionsProperty
Maybe LogPublishingOptionsProperty
Maybe ResourcePolicyProperty
Maybe VpcOptionsProperty
()
Value Integer
Value Text
haddock_workaround_ :: ()
bufferOptions :: Maybe BufferOptionsProperty
logPublishingOptions :: Maybe LogPublishingOptionsProperty
maxUnits :: Value Integer
minUnits :: Value Integer
pipelineConfigurationBody :: Value Text
pipelineName :: Value Text
pipelineRoleArn :: Maybe (Value Text)
resourcePolicy :: Maybe ResourcePolicyProperty
tags :: Maybe [Tag]
vpcOptions :: Maybe VpcOptionsProperty
haddock_workaround_ :: ()
bufferOptions :: Maybe BufferOptionsProperty
logPublishingOptions :: Maybe LogPublishingOptionsProperty
maxUnits :: Value Integer
minUnits :: Value Integer
pipelineConfigurationBody :: Value Text
pipelineName :: Value Text
pipelineRoleArn :: Maybe (Value Text)
resourcePolicy :: Maybe ResourcePolicyProperty
tags :: Maybe [Tag]
vpcOptions :: Maybe VpcOptionsProperty
..}
instance Property "LogPublishingOptions" Pipeline where
  type PropertyType "LogPublishingOptions" Pipeline = LogPublishingOptionsProperty
  set :: PropertyType "LogPublishingOptions" Pipeline
-> Pipeline -> Pipeline
set PropertyType "LogPublishingOptions" Pipeline
newValue Pipeline {Maybe [Tag]
Maybe (Value Text)
Maybe BufferOptionsProperty
Maybe EncryptionAtRestOptionsProperty
Maybe LogPublishingOptionsProperty
Maybe ResourcePolicyProperty
Maybe VpcOptionsProperty
()
Value Integer
Value Text
haddock_workaround_ :: Pipeline -> ()
bufferOptions :: Pipeline -> Maybe BufferOptionsProperty
encryptionAtRestOptions :: Pipeline -> Maybe EncryptionAtRestOptionsProperty
logPublishingOptions :: Pipeline -> Maybe LogPublishingOptionsProperty
maxUnits :: Pipeline -> Value Integer
minUnits :: Pipeline -> Value Integer
pipelineConfigurationBody :: Pipeline -> Value Text
pipelineName :: Pipeline -> Value Text
pipelineRoleArn :: Pipeline -> Maybe (Value Text)
resourcePolicy :: Pipeline -> Maybe ResourcePolicyProperty
tags :: Pipeline -> Maybe [Tag]
vpcOptions :: Pipeline -> Maybe VpcOptionsProperty
haddock_workaround_ :: ()
bufferOptions :: Maybe BufferOptionsProperty
encryptionAtRestOptions :: Maybe EncryptionAtRestOptionsProperty
logPublishingOptions :: Maybe LogPublishingOptionsProperty
maxUnits :: Value Integer
minUnits :: Value Integer
pipelineConfigurationBody :: Value Text
pipelineName :: Value Text
pipelineRoleArn :: Maybe (Value Text)
resourcePolicy :: Maybe ResourcePolicyProperty
tags :: Maybe [Tag]
vpcOptions :: Maybe VpcOptionsProperty
..}
    = Pipeline {logPublishingOptions :: Maybe LogPublishingOptionsProperty
logPublishingOptions = LogPublishingOptionsProperty -> Maybe LogPublishingOptionsProperty
forall a. a -> Maybe a
forall (f :: * -> *) a. Applicative f => a -> f a
Prelude.pure PropertyType "LogPublishingOptions" Pipeline
LogPublishingOptionsProperty
newValue, Maybe [Tag]
Maybe (Value Text)
Maybe BufferOptionsProperty
Maybe EncryptionAtRestOptionsProperty
Maybe ResourcePolicyProperty
Maybe VpcOptionsProperty
()
Value Integer
Value Text
haddock_workaround_ :: ()
bufferOptions :: Maybe BufferOptionsProperty
encryptionAtRestOptions :: Maybe EncryptionAtRestOptionsProperty
maxUnits :: Value Integer
minUnits :: Value Integer
pipelineConfigurationBody :: Value Text
pipelineName :: Value Text
pipelineRoleArn :: Maybe (Value Text)
resourcePolicy :: Maybe ResourcePolicyProperty
tags :: Maybe [Tag]
vpcOptions :: Maybe VpcOptionsProperty
haddock_workaround_ :: ()
bufferOptions :: Maybe BufferOptionsProperty
encryptionAtRestOptions :: Maybe EncryptionAtRestOptionsProperty
maxUnits :: Value Integer
minUnits :: Value Integer
pipelineConfigurationBody :: Value Text
pipelineName :: Value Text
pipelineRoleArn :: Maybe (Value Text)
resourcePolicy :: Maybe ResourcePolicyProperty
tags :: Maybe [Tag]
vpcOptions :: Maybe VpcOptionsProperty
..}
instance Property "MaxUnits" Pipeline where
  type PropertyType "MaxUnits" Pipeline = Value Prelude.Integer
  set :: PropertyType "MaxUnits" Pipeline -> Pipeline -> Pipeline
set PropertyType "MaxUnits" Pipeline
newValue Pipeline {Maybe [Tag]
Maybe (Value Text)
Maybe BufferOptionsProperty
Maybe EncryptionAtRestOptionsProperty
Maybe LogPublishingOptionsProperty
Maybe ResourcePolicyProperty
Maybe VpcOptionsProperty
()
Value Integer
Value Text
haddock_workaround_ :: Pipeline -> ()
bufferOptions :: Pipeline -> Maybe BufferOptionsProperty
encryptionAtRestOptions :: Pipeline -> Maybe EncryptionAtRestOptionsProperty
logPublishingOptions :: Pipeline -> Maybe LogPublishingOptionsProperty
maxUnits :: Pipeline -> Value Integer
minUnits :: Pipeline -> Value Integer
pipelineConfigurationBody :: Pipeline -> Value Text
pipelineName :: Pipeline -> Value Text
pipelineRoleArn :: Pipeline -> Maybe (Value Text)
resourcePolicy :: Pipeline -> Maybe ResourcePolicyProperty
tags :: Pipeline -> Maybe [Tag]
vpcOptions :: Pipeline -> Maybe VpcOptionsProperty
haddock_workaround_ :: ()
bufferOptions :: Maybe BufferOptionsProperty
encryptionAtRestOptions :: Maybe EncryptionAtRestOptionsProperty
logPublishingOptions :: Maybe LogPublishingOptionsProperty
maxUnits :: Value Integer
minUnits :: Value Integer
pipelineConfigurationBody :: Value Text
pipelineName :: Value Text
pipelineRoleArn :: Maybe (Value Text)
resourcePolicy :: Maybe ResourcePolicyProperty
tags :: Maybe [Tag]
vpcOptions :: Maybe VpcOptionsProperty
..} = Pipeline {maxUnits :: Value Integer
maxUnits = PropertyType "MaxUnits" Pipeline
Value Integer
newValue, Maybe [Tag]
Maybe (Value Text)
Maybe BufferOptionsProperty
Maybe EncryptionAtRestOptionsProperty
Maybe LogPublishingOptionsProperty
Maybe ResourcePolicyProperty
Maybe VpcOptionsProperty
()
Value Integer
Value Text
haddock_workaround_ :: ()
bufferOptions :: Maybe BufferOptionsProperty
encryptionAtRestOptions :: Maybe EncryptionAtRestOptionsProperty
logPublishingOptions :: Maybe LogPublishingOptionsProperty
minUnits :: Value Integer
pipelineConfigurationBody :: Value Text
pipelineName :: Value Text
pipelineRoleArn :: Maybe (Value Text)
resourcePolicy :: Maybe ResourcePolicyProperty
tags :: Maybe [Tag]
vpcOptions :: Maybe VpcOptionsProperty
haddock_workaround_ :: ()
bufferOptions :: Maybe BufferOptionsProperty
encryptionAtRestOptions :: Maybe EncryptionAtRestOptionsProperty
logPublishingOptions :: Maybe LogPublishingOptionsProperty
minUnits :: Value Integer
pipelineConfigurationBody :: Value Text
pipelineName :: Value Text
pipelineRoleArn :: Maybe (Value Text)
resourcePolicy :: Maybe ResourcePolicyProperty
tags :: Maybe [Tag]
vpcOptions :: Maybe VpcOptionsProperty
..}
instance Property "MinUnits" Pipeline where
  type PropertyType "MinUnits" Pipeline = Value Prelude.Integer
  set :: PropertyType "MinUnits" Pipeline -> Pipeline -> Pipeline
set PropertyType "MinUnits" Pipeline
newValue Pipeline {Maybe [Tag]
Maybe (Value Text)
Maybe BufferOptionsProperty
Maybe EncryptionAtRestOptionsProperty
Maybe LogPublishingOptionsProperty
Maybe ResourcePolicyProperty
Maybe VpcOptionsProperty
()
Value Integer
Value Text
haddock_workaround_ :: Pipeline -> ()
bufferOptions :: Pipeline -> Maybe BufferOptionsProperty
encryptionAtRestOptions :: Pipeline -> Maybe EncryptionAtRestOptionsProperty
logPublishingOptions :: Pipeline -> Maybe LogPublishingOptionsProperty
maxUnits :: Pipeline -> Value Integer
minUnits :: Pipeline -> Value Integer
pipelineConfigurationBody :: Pipeline -> Value Text
pipelineName :: Pipeline -> Value Text
pipelineRoleArn :: Pipeline -> Maybe (Value Text)
resourcePolicy :: Pipeline -> Maybe ResourcePolicyProperty
tags :: Pipeline -> Maybe [Tag]
vpcOptions :: Pipeline -> Maybe VpcOptionsProperty
haddock_workaround_ :: ()
bufferOptions :: Maybe BufferOptionsProperty
encryptionAtRestOptions :: Maybe EncryptionAtRestOptionsProperty
logPublishingOptions :: Maybe LogPublishingOptionsProperty
maxUnits :: Value Integer
minUnits :: Value Integer
pipelineConfigurationBody :: Value Text
pipelineName :: Value Text
pipelineRoleArn :: Maybe (Value Text)
resourcePolicy :: Maybe ResourcePolicyProperty
tags :: Maybe [Tag]
vpcOptions :: Maybe VpcOptionsProperty
..} = Pipeline {minUnits :: Value Integer
minUnits = PropertyType "MinUnits" Pipeline
Value Integer
newValue, Maybe [Tag]
Maybe (Value Text)
Maybe BufferOptionsProperty
Maybe EncryptionAtRestOptionsProperty
Maybe LogPublishingOptionsProperty
Maybe ResourcePolicyProperty
Maybe VpcOptionsProperty
()
Value Integer
Value Text
haddock_workaround_ :: ()
bufferOptions :: Maybe BufferOptionsProperty
encryptionAtRestOptions :: Maybe EncryptionAtRestOptionsProperty
logPublishingOptions :: Maybe LogPublishingOptionsProperty
maxUnits :: Value Integer
pipelineConfigurationBody :: Value Text
pipelineName :: Value Text
pipelineRoleArn :: Maybe (Value Text)
resourcePolicy :: Maybe ResourcePolicyProperty
tags :: Maybe [Tag]
vpcOptions :: Maybe VpcOptionsProperty
haddock_workaround_ :: ()
bufferOptions :: Maybe BufferOptionsProperty
encryptionAtRestOptions :: Maybe EncryptionAtRestOptionsProperty
logPublishingOptions :: Maybe LogPublishingOptionsProperty
maxUnits :: Value Integer
pipelineConfigurationBody :: Value Text
pipelineName :: Value Text
pipelineRoleArn :: Maybe (Value Text)
resourcePolicy :: Maybe ResourcePolicyProperty
tags :: Maybe [Tag]
vpcOptions :: Maybe VpcOptionsProperty
..}
instance Property "PipelineConfigurationBody" Pipeline where
  type PropertyType "PipelineConfigurationBody" Pipeline = Value Prelude.Text
  set :: PropertyType "PipelineConfigurationBody" Pipeline
-> Pipeline -> Pipeline
set PropertyType "PipelineConfigurationBody" Pipeline
newValue Pipeline {Maybe [Tag]
Maybe (Value Text)
Maybe BufferOptionsProperty
Maybe EncryptionAtRestOptionsProperty
Maybe LogPublishingOptionsProperty
Maybe ResourcePolicyProperty
Maybe VpcOptionsProperty
()
Value Integer
Value Text
haddock_workaround_ :: Pipeline -> ()
bufferOptions :: Pipeline -> Maybe BufferOptionsProperty
encryptionAtRestOptions :: Pipeline -> Maybe EncryptionAtRestOptionsProperty
logPublishingOptions :: Pipeline -> Maybe LogPublishingOptionsProperty
maxUnits :: Pipeline -> Value Integer
minUnits :: Pipeline -> Value Integer
pipelineConfigurationBody :: Pipeline -> Value Text
pipelineName :: Pipeline -> Value Text
pipelineRoleArn :: Pipeline -> Maybe (Value Text)
resourcePolicy :: Pipeline -> Maybe ResourcePolicyProperty
tags :: Pipeline -> Maybe [Tag]
vpcOptions :: Pipeline -> Maybe VpcOptionsProperty
haddock_workaround_ :: ()
bufferOptions :: Maybe BufferOptionsProperty
encryptionAtRestOptions :: Maybe EncryptionAtRestOptionsProperty
logPublishingOptions :: Maybe LogPublishingOptionsProperty
maxUnits :: Value Integer
minUnits :: Value Integer
pipelineConfigurationBody :: Value Text
pipelineName :: Value Text
pipelineRoleArn :: Maybe (Value Text)
resourcePolicy :: Maybe ResourcePolicyProperty
tags :: Maybe [Tag]
vpcOptions :: Maybe VpcOptionsProperty
..}
    = Pipeline {pipelineConfigurationBody :: Value Text
pipelineConfigurationBody = PropertyType "PipelineConfigurationBody" Pipeline
Value Text
newValue, Maybe [Tag]
Maybe (Value Text)
Maybe BufferOptionsProperty
Maybe EncryptionAtRestOptionsProperty
Maybe LogPublishingOptionsProperty
Maybe ResourcePolicyProperty
Maybe VpcOptionsProperty
()
Value Integer
Value Text
haddock_workaround_ :: ()
bufferOptions :: Maybe BufferOptionsProperty
encryptionAtRestOptions :: Maybe EncryptionAtRestOptionsProperty
logPublishingOptions :: Maybe LogPublishingOptionsProperty
maxUnits :: Value Integer
minUnits :: Value Integer
pipelineName :: Value Text
pipelineRoleArn :: Maybe (Value Text)
resourcePolicy :: Maybe ResourcePolicyProperty
tags :: Maybe [Tag]
vpcOptions :: Maybe VpcOptionsProperty
haddock_workaround_ :: ()
bufferOptions :: Maybe BufferOptionsProperty
encryptionAtRestOptions :: Maybe EncryptionAtRestOptionsProperty
logPublishingOptions :: Maybe LogPublishingOptionsProperty
maxUnits :: Value Integer
minUnits :: Value Integer
pipelineName :: Value Text
pipelineRoleArn :: Maybe (Value Text)
resourcePolicy :: Maybe ResourcePolicyProperty
tags :: Maybe [Tag]
vpcOptions :: Maybe VpcOptionsProperty
..}
instance Property "PipelineName" Pipeline where
  type PropertyType "PipelineName" Pipeline = Value Prelude.Text
  set :: PropertyType "PipelineName" Pipeline -> Pipeline -> Pipeline
set PropertyType "PipelineName" Pipeline
newValue Pipeline {Maybe [Tag]
Maybe (Value Text)
Maybe BufferOptionsProperty
Maybe EncryptionAtRestOptionsProperty
Maybe LogPublishingOptionsProperty
Maybe ResourcePolicyProperty
Maybe VpcOptionsProperty
()
Value Integer
Value Text
haddock_workaround_ :: Pipeline -> ()
bufferOptions :: Pipeline -> Maybe BufferOptionsProperty
encryptionAtRestOptions :: Pipeline -> Maybe EncryptionAtRestOptionsProperty
logPublishingOptions :: Pipeline -> Maybe LogPublishingOptionsProperty
maxUnits :: Pipeline -> Value Integer
minUnits :: Pipeline -> Value Integer
pipelineConfigurationBody :: Pipeline -> Value Text
pipelineName :: Pipeline -> Value Text
pipelineRoleArn :: Pipeline -> Maybe (Value Text)
resourcePolicy :: Pipeline -> Maybe ResourcePolicyProperty
tags :: Pipeline -> Maybe [Tag]
vpcOptions :: Pipeline -> Maybe VpcOptionsProperty
haddock_workaround_ :: ()
bufferOptions :: Maybe BufferOptionsProperty
encryptionAtRestOptions :: Maybe EncryptionAtRestOptionsProperty
logPublishingOptions :: Maybe LogPublishingOptionsProperty
maxUnits :: Value Integer
minUnits :: Value Integer
pipelineConfigurationBody :: Value Text
pipelineName :: Value Text
pipelineRoleArn :: Maybe (Value Text)
resourcePolicy :: Maybe ResourcePolicyProperty
tags :: Maybe [Tag]
vpcOptions :: Maybe VpcOptionsProperty
..} = Pipeline {pipelineName :: Value Text
pipelineName = PropertyType "PipelineName" Pipeline
Value Text
newValue, Maybe [Tag]
Maybe (Value Text)
Maybe BufferOptionsProperty
Maybe EncryptionAtRestOptionsProperty
Maybe LogPublishingOptionsProperty
Maybe ResourcePolicyProperty
Maybe VpcOptionsProperty
()
Value Integer
Value Text
haddock_workaround_ :: ()
bufferOptions :: Maybe BufferOptionsProperty
encryptionAtRestOptions :: Maybe EncryptionAtRestOptionsProperty
logPublishingOptions :: Maybe LogPublishingOptionsProperty
maxUnits :: Value Integer
minUnits :: Value Integer
pipelineConfigurationBody :: Value Text
pipelineRoleArn :: Maybe (Value Text)
resourcePolicy :: Maybe ResourcePolicyProperty
tags :: Maybe [Tag]
vpcOptions :: Maybe VpcOptionsProperty
haddock_workaround_ :: ()
bufferOptions :: Maybe BufferOptionsProperty
encryptionAtRestOptions :: Maybe EncryptionAtRestOptionsProperty
logPublishingOptions :: Maybe LogPublishingOptionsProperty
maxUnits :: Value Integer
minUnits :: Value Integer
pipelineConfigurationBody :: Value Text
pipelineRoleArn :: Maybe (Value Text)
resourcePolicy :: Maybe ResourcePolicyProperty
tags :: Maybe [Tag]
vpcOptions :: Maybe VpcOptionsProperty
..}
instance Property "PipelineRoleArn" Pipeline where
  type PropertyType "PipelineRoleArn" Pipeline = Value Prelude.Text
  set :: PropertyType "PipelineRoleArn" Pipeline -> Pipeline -> Pipeline
set PropertyType "PipelineRoleArn" Pipeline
newValue Pipeline {Maybe [Tag]
Maybe (Value Text)
Maybe BufferOptionsProperty
Maybe EncryptionAtRestOptionsProperty
Maybe LogPublishingOptionsProperty
Maybe ResourcePolicyProperty
Maybe VpcOptionsProperty
()
Value Integer
Value Text
haddock_workaround_ :: Pipeline -> ()
bufferOptions :: Pipeline -> Maybe BufferOptionsProperty
encryptionAtRestOptions :: Pipeline -> Maybe EncryptionAtRestOptionsProperty
logPublishingOptions :: Pipeline -> Maybe LogPublishingOptionsProperty
maxUnits :: Pipeline -> Value Integer
minUnits :: Pipeline -> Value Integer
pipelineConfigurationBody :: Pipeline -> Value Text
pipelineName :: Pipeline -> Value Text
pipelineRoleArn :: Pipeline -> Maybe (Value Text)
resourcePolicy :: Pipeline -> Maybe ResourcePolicyProperty
tags :: Pipeline -> Maybe [Tag]
vpcOptions :: Pipeline -> Maybe VpcOptionsProperty
haddock_workaround_ :: ()
bufferOptions :: Maybe BufferOptionsProperty
encryptionAtRestOptions :: Maybe EncryptionAtRestOptionsProperty
logPublishingOptions :: Maybe LogPublishingOptionsProperty
maxUnits :: Value Integer
minUnits :: Value Integer
pipelineConfigurationBody :: Value Text
pipelineName :: Value Text
pipelineRoleArn :: Maybe (Value Text)
resourcePolicy :: Maybe ResourcePolicyProperty
tags :: Maybe [Tag]
vpcOptions :: Maybe VpcOptionsProperty
..}
    = Pipeline {pipelineRoleArn :: Maybe (Value Text)
pipelineRoleArn = Value Text -> Maybe (Value Text)
forall a. a -> Maybe a
forall (f :: * -> *) a. Applicative f => a -> f a
Prelude.pure PropertyType "PipelineRoleArn" Pipeline
Value Text
newValue, Maybe [Tag]
Maybe BufferOptionsProperty
Maybe EncryptionAtRestOptionsProperty
Maybe LogPublishingOptionsProperty
Maybe ResourcePolicyProperty
Maybe VpcOptionsProperty
()
Value Integer
Value Text
haddock_workaround_ :: ()
bufferOptions :: Maybe BufferOptionsProperty
encryptionAtRestOptions :: Maybe EncryptionAtRestOptionsProperty
logPublishingOptions :: Maybe LogPublishingOptionsProperty
maxUnits :: Value Integer
minUnits :: Value Integer
pipelineConfigurationBody :: Value Text
pipelineName :: Value Text
resourcePolicy :: Maybe ResourcePolicyProperty
tags :: Maybe [Tag]
vpcOptions :: Maybe VpcOptionsProperty
haddock_workaround_ :: ()
bufferOptions :: Maybe BufferOptionsProperty
encryptionAtRestOptions :: Maybe EncryptionAtRestOptionsProperty
logPublishingOptions :: Maybe LogPublishingOptionsProperty
maxUnits :: Value Integer
minUnits :: Value Integer
pipelineConfigurationBody :: Value Text
pipelineName :: Value Text
resourcePolicy :: Maybe ResourcePolicyProperty
tags :: Maybe [Tag]
vpcOptions :: Maybe VpcOptionsProperty
..}
instance Property "ResourcePolicy" Pipeline where
  type PropertyType "ResourcePolicy" Pipeline = ResourcePolicyProperty
  set :: PropertyType "ResourcePolicy" Pipeline -> Pipeline -> Pipeline
set PropertyType "ResourcePolicy" Pipeline
newValue Pipeline {Maybe [Tag]
Maybe (Value Text)
Maybe BufferOptionsProperty
Maybe EncryptionAtRestOptionsProperty
Maybe LogPublishingOptionsProperty
Maybe ResourcePolicyProperty
Maybe VpcOptionsProperty
()
Value Integer
Value Text
haddock_workaround_ :: Pipeline -> ()
bufferOptions :: Pipeline -> Maybe BufferOptionsProperty
encryptionAtRestOptions :: Pipeline -> Maybe EncryptionAtRestOptionsProperty
logPublishingOptions :: Pipeline -> Maybe LogPublishingOptionsProperty
maxUnits :: Pipeline -> Value Integer
minUnits :: Pipeline -> Value Integer
pipelineConfigurationBody :: Pipeline -> Value Text
pipelineName :: Pipeline -> Value Text
pipelineRoleArn :: Pipeline -> Maybe (Value Text)
resourcePolicy :: Pipeline -> Maybe ResourcePolicyProperty
tags :: Pipeline -> Maybe [Tag]
vpcOptions :: Pipeline -> Maybe VpcOptionsProperty
haddock_workaround_ :: ()
bufferOptions :: Maybe BufferOptionsProperty
encryptionAtRestOptions :: Maybe EncryptionAtRestOptionsProperty
logPublishingOptions :: Maybe LogPublishingOptionsProperty
maxUnits :: Value Integer
minUnits :: Value Integer
pipelineConfigurationBody :: Value Text
pipelineName :: Value Text
pipelineRoleArn :: Maybe (Value Text)
resourcePolicy :: Maybe ResourcePolicyProperty
tags :: Maybe [Tag]
vpcOptions :: Maybe VpcOptionsProperty
..}
    = Pipeline {resourcePolicy :: Maybe ResourcePolicyProperty
resourcePolicy = ResourcePolicyProperty -> Maybe ResourcePolicyProperty
forall a. a -> Maybe a
forall (f :: * -> *) a. Applicative f => a -> f a
Prelude.pure PropertyType "ResourcePolicy" Pipeline
ResourcePolicyProperty
newValue, Maybe [Tag]
Maybe (Value Text)
Maybe BufferOptionsProperty
Maybe EncryptionAtRestOptionsProperty
Maybe LogPublishingOptionsProperty
Maybe VpcOptionsProperty
()
Value Integer
Value Text
haddock_workaround_ :: ()
bufferOptions :: Maybe BufferOptionsProperty
encryptionAtRestOptions :: Maybe EncryptionAtRestOptionsProperty
logPublishingOptions :: Maybe LogPublishingOptionsProperty
maxUnits :: Value Integer
minUnits :: Value Integer
pipelineConfigurationBody :: Value Text
pipelineName :: Value Text
pipelineRoleArn :: Maybe (Value Text)
tags :: Maybe [Tag]
vpcOptions :: Maybe VpcOptionsProperty
haddock_workaround_ :: ()
bufferOptions :: Maybe BufferOptionsProperty
encryptionAtRestOptions :: Maybe EncryptionAtRestOptionsProperty
logPublishingOptions :: Maybe LogPublishingOptionsProperty
maxUnits :: Value Integer
minUnits :: Value Integer
pipelineConfigurationBody :: Value Text
pipelineName :: Value Text
pipelineRoleArn :: Maybe (Value Text)
tags :: Maybe [Tag]
vpcOptions :: Maybe VpcOptionsProperty
..}
instance Property "Tags" Pipeline where
  type PropertyType "Tags" Pipeline = [Tag]
  set :: PropertyType "Tags" Pipeline -> Pipeline -> Pipeline
set PropertyType "Tags" Pipeline
newValue Pipeline {Maybe [Tag]
Maybe (Value Text)
Maybe BufferOptionsProperty
Maybe EncryptionAtRestOptionsProperty
Maybe LogPublishingOptionsProperty
Maybe ResourcePolicyProperty
Maybe VpcOptionsProperty
()
Value Integer
Value Text
haddock_workaround_ :: Pipeline -> ()
bufferOptions :: Pipeline -> Maybe BufferOptionsProperty
encryptionAtRestOptions :: Pipeline -> Maybe EncryptionAtRestOptionsProperty
logPublishingOptions :: Pipeline -> Maybe LogPublishingOptionsProperty
maxUnits :: Pipeline -> Value Integer
minUnits :: Pipeline -> Value Integer
pipelineConfigurationBody :: Pipeline -> Value Text
pipelineName :: Pipeline -> Value Text
pipelineRoleArn :: Pipeline -> Maybe (Value Text)
resourcePolicy :: Pipeline -> Maybe ResourcePolicyProperty
tags :: Pipeline -> Maybe [Tag]
vpcOptions :: Pipeline -> Maybe VpcOptionsProperty
haddock_workaround_ :: ()
bufferOptions :: Maybe BufferOptionsProperty
encryptionAtRestOptions :: Maybe EncryptionAtRestOptionsProperty
logPublishingOptions :: Maybe LogPublishingOptionsProperty
maxUnits :: Value Integer
minUnits :: Value Integer
pipelineConfigurationBody :: Value Text
pipelineName :: Value Text
pipelineRoleArn :: Maybe (Value Text)
resourcePolicy :: Maybe ResourcePolicyProperty
tags :: Maybe [Tag]
vpcOptions :: Maybe VpcOptionsProperty
..}
    = Pipeline {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" Pipeline
newValue, Maybe (Value Text)
Maybe BufferOptionsProperty
Maybe EncryptionAtRestOptionsProperty
Maybe LogPublishingOptionsProperty
Maybe ResourcePolicyProperty
Maybe VpcOptionsProperty
()
Value Integer
Value Text
haddock_workaround_ :: ()
bufferOptions :: Maybe BufferOptionsProperty
encryptionAtRestOptions :: Maybe EncryptionAtRestOptionsProperty
logPublishingOptions :: Maybe LogPublishingOptionsProperty
maxUnits :: Value Integer
minUnits :: Value Integer
pipelineConfigurationBody :: Value Text
pipelineName :: Value Text
pipelineRoleArn :: Maybe (Value Text)
resourcePolicy :: Maybe ResourcePolicyProperty
vpcOptions :: Maybe VpcOptionsProperty
haddock_workaround_ :: ()
bufferOptions :: Maybe BufferOptionsProperty
encryptionAtRestOptions :: Maybe EncryptionAtRestOptionsProperty
logPublishingOptions :: Maybe LogPublishingOptionsProperty
maxUnits :: Value Integer
minUnits :: Value Integer
pipelineConfigurationBody :: Value Text
pipelineName :: Value Text
pipelineRoleArn :: Maybe (Value Text)
resourcePolicy :: Maybe ResourcePolicyProperty
vpcOptions :: Maybe VpcOptionsProperty
..}
instance Property "VpcOptions" Pipeline where
  type PropertyType "VpcOptions" Pipeline = VpcOptionsProperty
  set :: PropertyType "VpcOptions" Pipeline -> Pipeline -> Pipeline
set PropertyType "VpcOptions" Pipeline
newValue Pipeline {Maybe [Tag]
Maybe (Value Text)
Maybe BufferOptionsProperty
Maybe EncryptionAtRestOptionsProperty
Maybe LogPublishingOptionsProperty
Maybe ResourcePolicyProperty
Maybe VpcOptionsProperty
()
Value Integer
Value Text
haddock_workaround_ :: Pipeline -> ()
bufferOptions :: Pipeline -> Maybe BufferOptionsProperty
encryptionAtRestOptions :: Pipeline -> Maybe EncryptionAtRestOptionsProperty
logPublishingOptions :: Pipeline -> Maybe LogPublishingOptionsProperty
maxUnits :: Pipeline -> Value Integer
minUnits :: Pipeline -> Value Integer
pipelineConfigurationBody :: Pipeline -> Value Text
pipelineName :: Pipeline -> Value Text
pipelineRoleArn :: Pipeline -> Maybe (Value Text)
resourcePolicy :: Pipeline -> Maybe ResourcePolicyProperty
tags :: Pipeline -> Maybe [Tag]
vpcOptions :: Pipeline -> Maybe VpcOptionsProperty
haddock_workaround_ :: ()
bufferOptions :: Maybe BufferOptionsProperty
encryptionAtRestOptions :: Maybe EncryptionAtRestOptionsProperty
logPublishingOptions :: Maybe LogPublishingOptionsProperty
maxUnits :: Value Integer
minUnits :: Value Integer
pipelineConfigurationBody :: Value Text
pipelineName :: Value Text
pipelineRoleArn :: Maybe (Value Text)
resourcePolicy :: Maybe ResourcePolicyProperty
tags :: Maybe [Tag]
vpcOptions :: Maybe VpcOptionsProperty
..}
    = Pipeline {vpcOptions :: Maybe VpcOptionsProperty
vpcOptions = VpcOptionsProperty -> Maybe VpcOptionsProperty
forall a. a -> Maybe a
forall (f :: * -> *) a. Applicative f => a -> f a
Prelude.pure PropertyType "VpcOptions" Pipeline
VpcOptionsProperty
newValue, Maybe [Tag]
Maybe (Value Text)
Maybe BufferOptionsProperty
Maybe EncryptionAtRestOptionsProperty
Maybe LogPublishingOptionsProperty
Maybe ResourcePolicyProperty
()
Value Integer
Value Text
haddock_workaround_ :: ()
bufferOptions :: Maybe BufferOptionsProperty
encryptionAtRestOptions :: Maybe EncryptionAtRestOptionsProperty
logPublishingOptions :: Maybe LogPublishingOptionsProperty
maxUnits :: Value Integer
minUnits :: Value Integer
pipelineConfigurationBody :: Value Text
pipelineName :: Value Text
pipelineRoleArn :: Maybe (Value Text)
resourcePolicy :: Maybe ResourcePolicyProperty
tags :: Maybe [Tag]
haddock_workaround_ :: ()
bufferOptions :: Maybe BufferOptionsProperty
encryptionAtRestOptions :: Maybe EncryptionAtRestOptionsProperty
logPublishingOptions :: Maybe LogPublishingOptionsProperty
maxUnits :: Value Integer
minUnits :: Value Integer
pipelineConfigurationBody :: Value Text
pipelineName :: Value Text
pipelineRoleArn :: Maybe (Value Text)
resourcePolicy :: Maybe ResourcePolicyProperty
tags :: Maybe [Tag]
..}