module Stratosphere.IVS.IngestConfiguration (
        IngestConfiguration(..), mkIngestConfiguration
    ) where
import qualified Data.Aeson as JSON
import qualified Stratosphere.Prelude as Prelude
import Stratosphere.Property
import Stratosphere.ResourceProperties
import Stratosphere.Tag
import Stratosphere.Value
data IngestConfiguration
  = -- | See: <http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-ivs-ingestconfiguration.html>
    IngestConfiguration {IngestConfiguration -> ()
haddock_workaround_ :: (),
                         -- | See: <http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-ivs-ingestconfiguration.html#cfn-ivs-ingestconfiguration-ingestprotocol>
                         IngestConfiguration -> Maybe (Value Text)
ingestProtocol :: (Prelude.Maybe (Value Prelude.Text)),
                         -- | See: <http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-ivs-ingestconfiguration.html#cfn-ivs-ingestconfiguration-insecureingest>
                         IngestConfiguration -> Maybe (Value Bool)
insecureIngest :: (Prelude.Maybe (Value Prelude.Bool)),
                         -- | See: <http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-ivs-ingestconfiguration.html#cfn-ivs-ingestconfiguration-name>
                         IngestConfiguration -> Maybe (Value Text)
name :: (Prelude.Maybe (Value Prelude.Text)),
                         -- | See: <http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-ivs-ingestconfiguration.html#cfn-ivs-ingestconfiguration-stagearn>
                         IngestConfiguration -> Maybe (Value Text)
stageArn :: (Prelude.Maybe (Value Prelude.Text)),
                         -- | See: <http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-ivs-ingestconfiguration.html#cfn-ivs-ingestconfiguration-tags>
                         IngestConfiguration -> Maybe [Tag]
tags :: (Prelude.Maybe [Tag]),
                         -- | See: <http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-ivs-ingestconfiguration.html#cfn-ivs-ingestconfiguration-userid>
                         IngestConfiguration -> Maybe (Value Text)
userId :: (Prelude.Maybe (Value Prelude.Text))}
  deriving stock (IngestConfiguration -> IngestConfiguration -> Bool
(IngestConfiguration -> IngestConfiguration -> Bool)
-> (IngestConfiguration -> IngestConfiguration -> Bool)
-> Eq IngestConfiguration
forall a. (a -> a -> Bool) -> (a -> a -> Bool) -> Eq a
$c== :: IngestConfiguration -> IngestConfiguration -> Bool
== :: IngestConfiguration -> IngestConfiguration -> Bool
$c/= :: IngestConfiguration -> IngestConfiguration -> Bool
/= :: IngestConfiguration -> IngestConfiguration -> Bool
Prelude.Eq, Int -> IngestConfiguration -> ShowS
[IngestConfiguration] -> ShowS
IngestConfiguration -> String
(Int -> IngestConfiguration -> ShowS)
-> (IngestConfiguration -> String)
-> ([IngestConfiguration] -> ShowS)
-> Show IngestConfiguration
forall a.
(Int -> a -> ShowS) -> (a -> String) -> ([a] -> ShowS) -> Show a
$cshowsPrec :: Int -> IngestConfiguration -> ShowS
showsPrec :: Int -> IngestConfiguration -> ShowS
$cshow :: IngestConfiguration -> String
show :: IngestConfiguration -> String
$cshowList :: [IngestConfiguration] -> ShowS
showList :: [IngestConfiguration] -> ShowS
Prelude.Show)
mkIngestConfiguration :: IngestConfiguration
mkIngestConfiguration :: IngestConfiguration
mkIngestConfiguration
  = IngestConfiguration
      {haddock_workaround_ :: ()
haddock_workaround_ = (), ingestProtocol :: Maybe (Value Text)
ingestProtocol = Maybe (Value Text)
forall a. Maybe a
Prelude.Nothing,
       insecureIngest :: Maybe (Value Bool)
insecureIngest = Maybe (Value Bool)
forall a. Maybe a
Prelude.Nothing, name :: Maybe (Value Text)
name = Maybe (Value Text)
forall a. Maybe a
Prelude.Nothing,
       stageArn :: Maybe (Value Text)
stageArn = Maybe (Value Text)
forall a. Maybe a
Prelude.Nothing, tags :: Maybe [Tag]
tags = Maybe [Tag]
forall a. Maybe a
Prelude.Nothing,
       userId :: Maybe (Value Text)
userId = Maybe (Value Text)
forall a. Maybe a
Prelude.Nothing}
instance ToResourceProperties IngestConfiguration where
  toResourceProperties :: IngestConfiguration -> ResourceProperties
toResourceProperties IngestConfiguration {Maybe [Tag]
Maybe (Value Bool)
Maybe (Value Text)
()
haddock_workaround_ :: IngestConfiguration -> ()
ingestProtocol :: IngestConfiguration -> Maybe (Value Text)
insecureIngest :: IngestConfiguration -> Maybe (Value Bool)
name :: IngestConfiguration -> Maybe (Value Text)
stageArn :: IngestConfiguration -> Maybe (Value Text)
tags :: IngestConfiguration -> Maybe [Tag]
userId :: IngestConfiguration -> Maybe (Value Text)
haddock_workaround_ :: ()
ingestProtocol :: Maybe (Value Text)
insecureIngest :: Maybe (Value Bool)
name :: Maybe (Value Text)
stageArn :: Maybe (Value Text)
tags :: Maybe [Tag]
userId :: Maybe (Value Text)
..}
    = ResourceProperties
        {awsType :: Text
awsType = Text
"AWS::IVS::IngestConfiguration",
         supportsTags :: Bool
supportsTags = Bool
Prelude.True,
         properties :: Object
properties = [Item Object] -> Object
forall l. IsList l => [Item l] -> l
Prelude.fromList
                        ([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
"IngestProtocol" (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)
ingestProtocol,
                            Key -> Value Bool -> (Key, Value)
forall v. ToJSON v => Key -> v -> (Key, Value)
forall e kv v. (KeyValue e kv, ToJSON v) => Key -> v -> kv
(JSON..=) Key
"InsecureIngest" (Value Bool -> (Key, Value))
-> Maybe (Value Bool) -> Maybe (Key, Value)
forall (f :: * -> *) a b. Functor f => (a -> b) -> f a -> f b
Prelude.<$> Maybe (Value Bool)
insecureIngest,
                            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
"Name" (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)
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..=) Key
"StageArn" (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)
stageArn,
                            Key -> [Tag] -> (Key, Value)
forall v. ToJSON v => Key -> v -> (Key, Value)
forall e kv v. (KeyValue e kv, ToJSON v) => Key -> v -> kv
(JSON..=) Key
"Tags" ([Tag] -> (Key, Value)) -> Maybe [Tag] -> Maybe (Key, Value)
forall (f :: * -> *) a b. Functor f => (a -> b) -> f a -> f b
Prelude.<$> Maybe [Tag]
tags,
                            Key -> Value Text -> (Key, Value)
forall v. ToJSON v => Key -> v -> (Key, Value)
forall e kv v. (KeyValue e kv, ToJSON v) => Key -> v -> kv
(JSON..=) Key
"UserId" (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)
userId])}
instance JSON.ToJSON IngestConfiguration where
  toJSON :: IngestConfiguration -> Value
toJSON IngestConfiguration {Maybe [Tag]
Maybe (Value Bool)
Maybe (Value Text)
()
haddock_workaround_ :: IngestConfiguration -> ()
ingestProtocol :: IngestConfiguration -> Maybe (Value Text)
insecureIngest :: IngestConfiguration -> Maybe (Value Bool)
name :: IngestConfiguration -> Maybe (Value Text)
stageArn :: IngestConfiguration -> Maybe (Value Text)
tags :: IngestConfiguration -> Maybe [Tag]
userId :: IngestConfiguration -> Maybe (Value Text)
haddock_workaround_ :: ()
ingestProtocol :: Maybe (Value Text)
insecureIngest :: Maybe (Value Bool)
name :: Maybe (Value Text)
stageArn :: Maybe (Value Text)
tags :: Maybe [Tag]
userId :: Maybe (Value Text)
..}
    = [(Key, Value)] -> Value
JSON.object
        ([Item [(Key, Value)]] -> [(Key, Value)]
forall l. IsList l => [Item l] -> l
Prelude.fromList
           ([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
"IngestProtocol" (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)
ingestProtocol,
               Key -> Value Bool -> (Key, Value)
forall v. ToJSON v => Key -> v -> (Key, Value)
forall e kv v. (KeyValue e kv, ToJSON v) => Key -> v -> kv
(JSON..=) Key
"InsecureIngest" (Value Bool -> (Key, Value))
-> Maybe (Value Bool) -> Maybe (Key, Value)
forall (f :: * -> *) a b. Functor f => (a -> b) -> f a -> f b
Prelude.<$> Maybe (Value Bool)
insecureIngest,
               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
"Name" (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)
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..=) Key
"StageArn" (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)
stageArn,
               Key -> [Tag] -> (Key, Value)
forall v. ToJSON v => Key -> v -> (Key, Value)
forall e kv v. (KeyValue e kv, ToJSON v) => Key -> v -> kv
(JSON..=) Key
"Tags" ([Tag] -> (Key, Value)) -> Maybe [Tag] -> Maybe (Key, Value)
forall (f :: * -> *) a b. Functor f => (a -> b) -> f a -> f b
Prelude.<$> Maybe [Tag]
tags,
               Key -> Value Text -> (Key, Value)
forall v. ToJSON v => Key -> v -> (Key, Value)
forall e kv v. (KeyValue e kv, ToJSON v) => Key -> v -> kv
(JSON..=) Key
"UserId" (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)
userId]))
instance Property "IngestProtocol" IngestConfiguration where
  type PropertyType "IngestProtocol" IngestConfiguration = Value Prelude.Text
  set :: PropertyType "IngestProtocol" IngestConfiguration
-> IngestConfiguration -> IngestConfiguration
set PropertyType "IngestProtocol" IngestConfiguration
newValue IngestConfiguration {Maybe [Tag]
Maybe (Value Bool)
Maybe (Value Text)
()
haddock_workaround_ :: IngestConfiguration -> ()
ingestProtocol :: IngestConfiguration -> Maybe (Value Text)
insecureIngest :: IngestConfiguration -> Maybe (Value Bool)
name :: IngestConfiguration -> Maybe (Value Text)
stageArn :: IngestConfiguration -> Maybe (Value Text)
tags :: IngestConfiguration -> Maybe [Tag]
userId :: IngestConfiguration -> Maybe (Value Text)
haddock_workaround_ :: ()
ingestProtocol :: Maybe (Value Text)
insecureIngest :: Maybe (Value Bool)
name :: Maybe (Value Text)
stageArn :: Maybe (Value Text)
tags :: Maybe [Tag]
userId :: Maybe (Value Text)
..}
    = IngestConfiguration {ingestProtocol :: Maybe (Value Text)
ingestProtocol = Value Text -> Maybe (Value Text)
forall a. a -> Maybe a
forall (f :: * -> *) a. Applicative f => a -> f a
Prelude.pure PropertyType "IngestProtocol" IngestConfiguration
Value Text
newValue, Maybe [Tag]
Maybe (Value Bool)
Maybe (Value Text)
()
haddock_workaround_ :: ()
insecureIngest :: Maybe (Value Bool)
name :: Maybe (Value Text)
stageArn :: Maybe (Value Text)
tags :: Maybe [Tag]
userId :: Maybe (Value Text)
haddock_workaround_ :: ()
insecureIngest :: Maybe (Value Bool)
name :: Maybe (Value Text)
stageArn :: Maybe (Value Text)
tags :: Maybe [Tag]
userId :: Maybe (Value Text)
..}
instance Property "InsecureIngest" IngestConfiguration where
  type PropertyType "InsecureIngest" IngestConfiguration = Value Prelude.Bool
  set :: PropertyType "InsecureIngest" IngestConfiguration
-> IngestConfiguration -> IngestConfiguration
set PropertyType "InsecureIngest" IngestConfiguration
newValue IngestConfiguration {Maybe [Tag]
Maybe (Value Bool)
Maybe (Value Text)
()
haddock_workaround_ :: IngestConfiguration -> ()
ingestProtocol :: IngestConfiguration -> Maybe (Value Text)
insecureIngest :: IngestConfiguration -> Maybe (Value Bool)
name :: IngestConfiguration -> Maybe (Value Text)
stageArn :: IngestConfiguration -> Maybe (Value Text)
tags :: IngestConfiguration -> Maybe [Tag]
userId :: IngestConfiguration -> Maybe (Value Text)
haddock_workaround_ :: ()
ingestProtocol :: Maybe (Value Text)
insecureIngest :: Maybe (Value Bool)
name :: Maybe (Value Text)
stageArn :: Maybe (Value Text)
tags :: Maybe [Tag]
userId :: Maybe (Value Text)
..}
    = IngestConfiguration {insecureIngest :: Maybe (Value Bool)
insecureIngest = Value Bool -> Maybe (Value Bool)
forall a. a -> Maybe a
forall (f :: * -> *) a. Applicative f => a -> f a
Prelude.pure PropertyType "InsecureIngest" IngestConfiguration
Value Bool
newValue, Maybe [Tag]
Maybe (Value Text)
()
haddock_workaround_ :: ()
ingestProtocol :: Maybe (Value Text)
name :: Maybe (Value Text)
stageArn :: Maybe (Value Text)
tags :: Maybe [Tag]
userId :: Maybe (Value Text)
haddock_workaround_ :: ()
ingestProtocol :: Maybe (Value Text)
name :: Maybe (Value Text)
stageArn :: Maybe (Value Text)
tags :: Maybe [Tag]
userId :: Maybe (Value Text)
..}
instance Property "Name" IngestConfiguration where
  type PropertyType "Name" IngestConfiguration = Value Prelude.Text
  set :: PropertyType "Name" IngestConfiguration
-> IngestConfiguration -> IngestConfiguration
set PropertyType "Name" IngestConfiguration
newValue IngestConfiguration {Maybe [Tag]
Maybe (Value Bool)
Maybe (Value Text)
()
haddock_workaround_ :: IngestConfiguration -> ()
ingestProtocol :: IngestConfiguration -> Maybe (Value Text)
insecureIngest :: IngestConfiguration -> Maybe (Value Bool)
name :: IngestConfiguration -> Maybe (Value Text)
stageArn :: IngestConfiguration -> Maybe (Value Text)
tags :: IngestConfiguration -> Maybe [Tag]
userId :: IngestConfiguration -> Maybe (Value Text)
haddock_workaround_ :: ()
ingestProtocol :: Maybe (Value Text)
insecureIngest :: Maybe (Value Bool)
name :: Maybe (Value Text)
stageArn :: Maybe (Value Text)
tags :: Maybe [Tag]
userId :: Maybe (Value Text)
..}
    = IngestConfiguration {name :: Maybe (Value Text)
name = Value Text -> Maybe (Value Text)
forall a. a -> Maybe a
forall (f :: * -> *) a. Applicative f => a -> f a
Prelude.pure PropertyType "Name" IngestConfiguration
Value Text
newValue, Maybe [Tag]
Maybe (Value Bool)
Maybe (Value Text)
()
haddock_workaround_ :: ()
ingestProtocol :: Maybe (Value Text)
insecureIngest :: Maybe (Value Bool)
stageArn :: Maybe (Value Text)
tags :: Maybe [Tag]
userId :: Maybe (Value Text)
haddock_workaround_ :: ()
ingestProtocol :: Maybe (Value Text)
insecureIngest :: Maybe (Value Bool)
stageArn :: Maybe (Value Text)
tags :: Maybe [Tag]
userId :: Maybe (Value Text)
..}
instance Property "StageArn" IngestConfiguration where
  type PropertyType "StageArn" IngestConfiguration = Value Prelude.Text
  set :: PropertyType "StageArn" IngestConfiguration
-> IngestConfiguration -> IngestConfiguration
set PropertyType "StageArn" IngestConfiguration
newValue IngestConfiguration {Maybe [Tag]
Maybe (Value Bool)
Maybe (Value Text)
()
haddock_workaround_ :: IngestConfiguration -> ()
ingestProtocol :: IngestConfiguration -> Maybe (Value Text)
insecureIngest :: IngestConfiguration -> Maybe (Value Bool)
name :: IngestConfiguration -> Maybe (Value Text)
stageArn :: IngestConfiguration -> Maybe (Value Text)
tags :: IngestConfiguration -> Maybe [Tag]
userId :: IngestConfiguration -> Maybe (Value Text)
haddock_workaround_ :: ()
ingestProtocol :: Maybe (Value Text)
insecureIngest :: Maybe (Value Bool)
name :: Maybe (Value Text)
stageArn :: Maybe (Value Text)
tags :: Maybe [Tag]
userId :: Maybe (Value Text)
..}
    = IngestConfiguration {stageArn :: Maybe (Value Text)
stageArn = Value Text -> Maybe (Value Text)
forall a. a -> Maybe a
forall (f :: * -> *) a. Applicative f => a -> f a
Prelude.pure PropertyType "StageArn" IngestConfiguration
Value Text
newValue, Maybe [Tag]
Maybe (Value Bool)
Maybe (Value Text)
()
haddock_workaround_ :: ()
ingestProtocol :: Maybe (Value Text)
insecureIngest :: Maybe (Value Bool)
name :: Maybe (Value Text)
tags :: Maybe [Tag]
userId :: Maybe (Value Text)
haddock_workaround_ :: ()
ingestProtocol :: Maybe (Value Text)
insecureIngest :: Maybe (Value Bool)
name :: Maybe (Value Text)
tags :: Maybe [Tag]
userId :: Maybe (Value Text)
..}
instance Property "Tags" IngestConfiguration where
  type PropertyType "Tags" IngestConfiguration = [Tag]
  set :: PropertyType "Tags" IngestConfiguration
-> IngestConfiguration -> IngestConfiguration
set PropertyType "Tags" IngestConfiguration
newValue IngestConfiguration {Maybe [Tag]
Maybe (Value Bool)
Maybe (Value Text)
()
haddock_workaround_ :: IngestConfiguration -> ()
ingestProtocol :: IngestConfiguration -> Maybe (Value Text)
insecureIngest :: IngestConfiguration -> Maybe (Value Bool)
name :: IngestConfiguration -> Maybe (Value Text)
stageArn :: IngestConfiguration -> Maybe (Value Text)
tags :: IngestConfiguration -> Maybe [Tag]
userId :: IngestConfiguration -> Maybe (Value Text)
haddock_workaround_ :: ()
ingestProtocol :: Maybe (Value Text)
insecureIngest :: Maybe (Value Bool)
name :: Maybe (Value Text)
stageArn :: Maybe (Value Text)
tags :: Maybe [Tag]
userId :: Maybe (Value Text)
..}
    = IngestConfiguration {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" IngestConfiguration
newValue, Maybe (Value Bool)
Maybe (Value Text)
()
haddock_workaround_ :: ()
ingestProtocol :: Maybe (Value Text)
insecureIngest :: Maybe (Value Bool)
name :: Maybe (Value Text)
stageArn :: Maybe (Value Text)
userId :: Maybe (Value Text)
haddock_workaround_ :: ()
ingestProtocol :: Maybe (Value Text)
insecureIngest :: Maybe (Value Bool)
name :: Maybe (Value Text)
stageArn :: Maybe (Value Text)
userId :: Maybe (Value Text)
..}
instance Property "UserId" IngestConfiguration where
  type PropertyType "UserId" IngestConfiguration = Value Prelude.Text
  set :: PropertyType "UserId" IngestConfiguration
-> IngestConfiguration -> IngestConfiguration
set PropertyType "UserId" IngestConfiguration
newValue IngestConfiguration {Maybe [Tag]
Maybe (Value Bool)
Maybe (Value Text)
()
haddock_workaround_ :: IngestConfiguration -> ()
ingestProtocol :: IngestConfiguration -> Maybe (Value Text)
insecureIngest :: IngestConfiguration -> Maybe (Value Bool)
name :: IngestConfiguration -> Maybe (Value Text)
stageArn :: IngestConfiguration -> Maybe (Value Text)
tags :: IngestConfiguration -> Maybe [Tag]
userId :: IngestConfiguration -> Maybe (Value Text)
haddock_workaround_ :: ()
ingestProtocol :: Maybe (Value Text)
insecureIngest :: Maybe (Value Bool)
name :: Maybe (Value Text)
stageArn :: Maybe (Value Text)
tags :: Maybe [Tag]
userId :: Maybe (Value Text)
..}
    = IngestConfiguration {userId :: Maybe (Value Text)
userId = Value Text -> Maybe (Value Text)
forall a. a -> Maybe a
forall (f :: * -> *) a. Applicative f => a -> f a
Prelude.pure PropertyType "UserId" IngestConfiguration
Value Text
newValue, Maybe [Tag]
Maybe (Value Bool)
Maybe (Value Text)
()
haddock_workaround_ :: ()
ingestProtocol :: Maybe (Value Text)
insecureIngest :: Maybe (Value Bool)
name :: Maybe (Value Text)
stageArn :: Maybe (Value Text)
tags :: Maybe [Tag]
haddock_workaround_ :: ()
ingestProtocol :: Maybe (Value Text)
insecureIngest :: Maybe (Value Bool)
name :: Maybe (Value Text)
stageArn :: Maybe (Value Text)
tags :: Maybe [Tag]
..}