module Stratosphere.Cognito.LogDeliveryConfiguration.LogConfigurationProperty (
module Exports, LogConfigurationProperty(..),
mkLogConfigurationProperty
) where
import qualified Data.Aeson as JSON
import qualified Stratosphere.Prelude as Prelude
import Stratosphere.Property
import {-# SOURCE #-} Stratosphere.Cognito.LogDeliveryConfiguration.CloudWatchLogsConfigurationProperty as Exports
import {-# SOURCE #-} Stratosphere.Cognito.LogDeliveryConfiguration.FirehoseConfigurationProperty as Exports
import {-# SOURCE #-} Stratosphere.Cognito.LogDeliveryConfiguration.S3ConfigurationProperty as Exports
import Stratosphere.ResourceProperties
import Stratosphere.Value
data LogConfigurationProperty
=
LogConfigurationProperty {LogConfigurationProperty -> ()
haddock_workaround_ :: (),
LogConfigurationProperty
-> Maybe CloudWatchLogsConfigurationProperty
cloudWatchLogsConfiguration :: (Prelude.Maybe CloudWatchLogsConfigurationProperty),
LogConfigurationProperty -> Maybe (Value Text)
eventSource :: (Prelude.Maybe (Value Prelude.Text)),
LogConfigurationProperty -> Maybe FirehoseConfigurationProperty
firehoseConfiguration :: (Prelude.Maybe FirehoseConfigurationProperty),
LogConfigurationProperty -> Maybe (Value Text)
logLevel :: (Prelude.Maybe (Value Prelude.Text)),
LogConfigurationProperty -> Maybe S3ConfigurationProperty
s3Configuration :: (Prelude.Maybe S3ConfigurationProperty)}
deriving stock (LogConfigurationProperty -> LogConfigurationProperty -> Bool
(LogConfigurationProperty -> LogConfigurationProperty -> Bool)
-> (LogConfigurationProperty -> LogConfigurationProperty -> Bool)
-> Eq LogConfigurationProperty
forall a. (a -> a -> Bool) -> (a -> a -> Bool) -> Eq a
$c== :: LogConfigurationProperty -> LogConfigurationProperty -> Bool
== :: LogConfigurationProperty -> LogConfigurationProperty -> Bool
$c/= :: LogConfigurationProperty -> LogConfigurationProperty -> Bool
/= :: LogConfigurationProperty -> LogConfigurationProperty -> Bool
Prelude.Eq, Int -> LogConfigurationProperty -> ShowS
[LogConfigurationProperty] -> ShowS
LogConfigurationProperty -> String
(Int -> LogConfigurationProperty -> ShowS)
-> (LogConfigurationProperty -> String)
-> ([LogConfigurationProperty] -> ShowS)
-> Show LogConfigurationProperty
forall a.
(Int -> a -> ShowS) -> (a -> String) -> ([a] -> ShowS) -> Show a
$cshowsPrec :: Int -> LogConfigurationProperty -> ShowS
showsPrec :: Int -> LogConfigurationProperty -> ShowS
$cshow :: LogConfigurationProperty -> String
show :: LogConfigurationProperty -> String
$cshowList :: [LogConfigurationProperty] -> ShowS
showList :: [LogConfigurationProperty] -> ShowS
Prelude.Show)
mkLogConfigurationProperty :: LogConfigurationProperty
mkLogConfigurationProperty :: LogConfigurationProperty
mkLogConfigurationProperty
= LogConfigurationProperty
{haddock_workaround_ :: ()
haddock_workaround_ = (),
cloudWatchLogsConfiguration :: Maybe CloudWatchLogsConfigurationProperty
cloudWatchLogsConfiguration = Maybe CloudWatchLogsConfigurationProperty
forall a. Maybe a
Prelude.Nothing,
eventSource :: Maybe (Value Text)
eventSource = Maybe (Value Text)
forall a. Maybe a
Prelude.Nothing,
firehoseConfiguration :: Maybe FirehoseConfigurationProperty
firehoseConfiguration = Maybe FirehoseConfigurationProperty
forall a. Maybe a
Prelude.Nothing,
logLevel :: Maybe (Value Text)
logLevel = Maybe (Value Text)
forall a. Maybe a
Prelude.Nothing, s3Configuration :: Maybe S3ConfigurationProperty
s3Configuration = Maybe S3ConfigurationProperty
forall a. Maybe a
Prelude.Nothing}
instance ToResourceProperties LogConfigurationProperty where
toResourceProperties :: LogConfigurationProperty -> ResourceProperties
toResourceProperties LogConfigurationProperty {Maybe (Value Text)
Maybe CloudWatchLogsConfigurationProperty
Maybe FirehoseConfigurationProperty
Maybe S3ConfigurationProperty
()
haddock_workaround_ :: LogConfigurationProperty -> ()
cloudWatchLogsConfiguration :: LogConfigurationProperty
-> Maybe CloudWatchLogsConfigurationProperty
eventSource :: LogConfigurationProperty -> Maybe (Value Text)
firehoseConfiguration :: LogConfigurationProperty -> Maybe FirehoseConfigurationProperty
logLevel :: LogConfigurationProperty -> Maybe (Value Text)
s3Configuration :: LogConfigurationProperty -> Maybe S3ConfigurationProperty
haddock_workaround_ :: ()
cloudWatchLogsConfiguration :: Maybe CloudWatchLogsConfigurationProperty
eventSource :: Maybe (Value Text)
firehoseConfiguration :: Maybe FirehoseConfigurationProperty
logLevel :: Maybe (Value Text)
s3Configuration :: Maybe S3ConfigurationProperty
..}
= ResourceProperties
{awsType :: Text
awsType = Text
"AWS::Cognito::LogDeliveryConfiguration.LogConfiguration",
supportsTags :: Bool
supportsTags = Bool
Prelude.False,
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 -> CloudWatchLogsConfigurationProperty -> (Key, Value)
forall v. ToJSON v => Key -> v -> (Key, Value)
forall e kv v. (KeyValue e kv, ToJSON v) => Key -> v -> kv
(JSON..=) Key
"CloudWatchLogsConfiguration"
(CloudWatchLogsConfigurationProperty -> (Key, Value))
-> Maybe CloudWatchLogsConfigurationProperty -> Maybe (Key, Value)
forall (f :: * -> *) a b. Functor f => (a -> b) -> f a -> f b
Prelude.<$> Maybe CloudWatchLogsConfigurationProperty
cloudWatchLogsConfiguration,
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
"EventSource" (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)
eventSource,
Key -> FirehoseConfigurationProperty -> (Key, Value)
forall v. ToJSON v => Key -> v -> (Key, Value)
forall e kv v. (KeyValue e kv, ToJSON v) => Key -> v -> kv
(JSON..=) Key
"FirehoseConfiguration"
(FirehoseConfigurationProperty -> (Key, Value))
-> Maybe FirehoseConfigurationProperty -> Maybe (Key, Value)
forall (f :: * -> *) a b. Functor f => (a -> b) -> f a -> f b
Prelude.<$> Maybe FirehoseConfigurationProperty
firehoseConfiguration,
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
"LogLevel" (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)
logLevel,
Key -> S3ConfigurationProperty -> (Key, Value)
forall v. ToJSON v => Key -> v -> (Key, Value)
forall e kv v. (KeyValue e kv, ToJSON v) => Key -> v -> kv
(JSON..=) Key
"S3Configuration" (S3ConfigurationProperty -> (Key, Value))
-> Maybe S3ConfigurationProperty -> Maybe (Key, Value)
forall (f :: * -> *) a b. Functor f => (a -> b) -> f a -> f b
Prelude.<$> Maybe S3ConfigurationProperty
s3Configuration])}
instance JSON.ToJSON LogConfigurationProperty where
toJSON :: LogConfigurationProperty -> Value
toJSON LogConfigurationProperty {Maybe (Value Text)
Maybe CloudWatchLogsConfigurationProperty
Maybe FirehoseConfigurationProperty
Maybe S3ConfigurationProperty
()
haddock_workaround_ :: LogConfigurationProperty -> ()
cloudWatchLogsConfiguration :: LogConfigurationProperty
-> Maybe CloudWatchLogsConfigurationProperty
eventSource :: LogConfigurationProperty -> Maybe (Value Text)
firehoseConfiguration :: LogConfigurationProperty -> Maybe FirehoseConfigurationProperty
logLevel :: LogConfigurationProperty -> Maybe (Value Text)
s3Configuration :: LogConfigurationProperty -> Maybe S3ConfigurationProperty
haddock_workaround_ :: ()
cloudWatchLogsConfiguration :: Maybe CloudWatchLogsConfigurationProperty
eventSource :: Maybe (Value Text)
firehoseConfiguration :: Maybe FirehoseConfigurationProperty
logLevel :: Maybe (Value Text)
s3Configuration :: Maybe S3ConfigurationProperty
..}
= [(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 -> CloudWatchLogsConfigurationProperty -> (Key, Value)
forall v. ToJSON v => Key -> v -> (Key, Value)
forall e kv v. (KeyValue e kv, ToJSON v) => Key -> v -> kv
(JSON..=) Key
"CloudWatchLogsConfiguration"
(CloudWatchLogsConfigurationProperty -> (Key, Value))
-> Maybe CloudWatchLogsConfigurationProperty -> Maybe (Key, Value)
forall (f :: * -> *) a b. Functor f => (a -> b) -> f a -> f b
Prelude.<$> Maybe CloudWatchLogsConfigurationProperty
cloudWatchLogsConfiguration,
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
"EventSource" (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)
eventSource,
Key -> FirehoseConfigurationProperty -> (Key, Value)
forall v. ToJSON v => Key -> v -> (Key, Value)
forall e kv v. (KeyValue e kv, ToJSON v) => Key -> v -> kv
(JSON..=) Key
"FirehoseConfiguration"
(FirehoseConfigurationProperty -> (Key, Value))
-> Maybe FirehoseConfigurationProperty -> Maybe (Key, Value)
forall (f :: * -> *) a b. Functor f => (a -> b) -> f a -> f b
Prelude.<$> Maybe FirehoseConfigurationProperty
firehoseConfiguration,
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
"LogLevel" (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)
logLevel,
Key -> S3ConfigurationProperty -> (Key, Value)
forall v. ToJSON v => Key -> v -> (Key, Value)
forall e kv v. (KeyValue e kv, ToJSON v) => Key -> v -> kv
(JSON..=) Key
"S3Configuration" (S3ConfigurationProperty -> (Key, Value))
-> Maybe S3ConfigurationProperty -> Maybe (Key, Value)
forall (f :: * -> *) a b. Functor f => (a -> b) -> f a -> f b
Prelude.<$> Maybe S3ConfigurationProperty
s3Configuration]))
instance Property "CloudWatchLogsConfiguration" LogConfigurationProperty where
type PropertyType "CloudWatchLogsConfiguration" LogConfigurationProperty = CloudWatchLogsConfigurationProperty
set :: PropertyType "CloudWatchLogsConfiguration" LogConfigurationProperty
-> LogConfigurationProperty -> LogConfigurationProperty
set PropertyType "CloudWatchLogsConfiguration" LogConfigurationProperty
newValue LogConfigurationProperty {Maybe (Value Text)
Maybe CloudWatchLogsConfigurationProperty
Maybe FirehoseConfigurationProperty
Maybe S3ConfigurationProperty
()
haddock_workaround_ :: LogConfigurationProperty -> ()
cloudWatchLogsConfiguration :: LogConfigurationProperty
-> Maybe CloudWatchLogsConfigurationProperty
eventSource :: LogConfigurationProperty -> Maybe (Value Text)
firehoseConfiguration :: LogConfigurationProperty -> Maybe FirehoseConfigurationProperty
logLevel :: LogConfigurationProperty -> Maybe (Value Text)
s3Configuration :: LogConfigurationProperty -> Maybe S3ConfigurationProperty
haddock_workaround_ :: ()
cloudWatchLogsConfiguration :: Maybe CloudWatchLogsConfigurationProperty
eventSource :: Maybe (Value Text)
firehoseConfiguration :: Maybe FirehoseConfigurationProperty
logLevel :: Maybe (Value Text)
s3Configuration :: Maybe S3ConfigurationProperty
..}
= LogConfigurationProperty
{cloudWatchLogsConfiguration :: Maybe CloudWatchLogsConfigurationProperty
cloudWatchLogsConfiguration = CloudWatchLogsConfigurationProperty
-> Maybe CloudWatchLogsConfigurationProperty
forall a. a -> Maybe a
forall (f :: * -> *) a. Applicative f => a -> f a
Prelude.pure PropertyType "CloudWatchLogsConfiguration" LogConfigurationProperty
CloudWatchLogsConfigurationProperty
newValue, Maybe (Value Text)
Maybe FirehoseConfigurationProperty
Maybe S3ConfigurationProperty
()
haddock_workaround_ :: ()
eventSource :: Maybe (Value Text)
firehoseConfiguration :: Maybe FirehoseConfigurationProperty
logLevel :: Maybe (Value Text)
s3Configuration :: Maybe S3ConfigurationProperty
haddock_workaround_ :: ()
eventSource :: Maybe (Value Text)
firehoseConfiguration :: Maybe FirehoseConfigurationProperty
logLevel :: Maybe (Value Text)
s3Configuration :: Maybe S3ConfigurationProperty
..}
instance Property "EventSource" LogConfigurationProperty where
type PropertyType "EventSource" LogConfigurationProperty = Value Prelude.Text
set :: PropertyType "EventSource" LogConfigurationProperty
-> LogConfigurationProperty -> LogConfigurationProperty
set PropertyType "EventSource" LogConfigurationProperty
newValue LogConfigurationProperty {Maybe (Value Text)
Maybe CloudWatchLogsConfigurationProperty
Maybe FirehoseConfigurationProperty
Maybe S3ConfigurationProperty
()
haddock_workaround_ :: LogConfigurationProperty -> ()
cloudWatchLogsConfiguration :: LogConfigurationProperty
-> Maybe CloudWatchLogsConfigurationProperty
eventSource :: LogConfigurationProperty -> Maybe (Value Text)
firehoseConfiguration :: LogConfigurationProperty -> Maybe FirehoseConfigurationProperty
logLevel :: LogConfigurationProperty -> Maybe (Value Text)
s3Configuration :: LogConfigurationProperty -> Maybe S3ConfigurationProperty
haddock_workaround_ :: ()
cloudWatchLogsConfiguration :: Maybe CloudWatchLogsConfigurationProperty
eventSource :: Maybe (Value Text)
firehoseConfiguration :: Maybe FirehoseConfigurationProperty
logLevel :: Maybe (Value Text)
s3Configuration :: Maybe S3ConfigurationProperty
..}
= LogConfigurationProperty
{eventSource :: Maybe (Value Text)
eventSource = Value Text -> Maybe (Value Text)
forall a. a -> Maybe a
forall (f :: * -> *) a. Applicative f => a -> f a
Prelude.pure PropertyType "EventSource" LogConfigurationProperty
Value Text
newValue, Maybe (Value Text)
Maybe CloudWatchLogsConfigurationProperty
Maybe FirehoseConfigurationProperty
Maybe S3ConfigurationProperty
()
haddock_workaround_ :: ()
cloudWatchLogsConfiguration :: Maybe CloudWatchLogsConfigurationProperty
firehoseConfiguration :: Maybe FirehoseConfigurationProperty
logLevel :: Maybe (Value Text)
s3Configuration :: Maybe S3ConfigurationProperty
haddock_workaround_ :: ()
cloudWatchLogsConfiguration :: Maybe CloudWatchLogsConfigurationProperty
firehoseConfiguration :: Maybe FirehoseConfigurationProperty
logLevel :: Maybe (Value Text)
s3Configuration :: Maybe S3ConfigurationProperty
..}
instance Property "FirehoseConfiguration" LogConfigurationProperty where
type PropertyType "FirehoseConfiguration" LogConfigurationProperty = FirehoseConfigurationProperty
set :: PropertyType "FirehoseConfiguration" LogConfigurationProperty
-> LogConfigurationProperty -> LogConfigurationProperty
set PropertyType "FirehoseConfiguration" LogConfigurationProperty
newValue LogConfigurationProperty {Maybe (Value Text)
Maybe CloudWatchLogsConfigurationProperty
Maybe FirehoseConfigurationProperty
Maybe S3ConfigurationProperty
()
haddock_workaround_ :: LogConfigurationProperty -> ()
cloudWatchLogsConfiguration :: LogConfigurationProperty
-> Maybe CloudWatchLogsConfigurationProperty
eventSource :: LogConfigurationProperty -> Maybe (Value Text)
firehoseConfiguration :: LogConfigurationProperty -> Maybe FirehoseConfigurationProperty
logLevel :: LogConfigurationProperty -> Maybe (Value Text)
s3Configuration :: LogConfigurationProperty -> Maybe S3ConfigurationProperty
haddock_workaround_ :: ()
cloudWatchLogsConfiguration :: Maybe CloudWatchLogsConfigurationProperty
eventSource :: Maybe (Value Text)
firehoseConfiguration :: Maybe FirehoseConfigurationProperty
logLevel :: Maybe (Value Text)
s3Configuration :: Maybe S3ConfigurationProperty
..}
= LogConfigurationProperty
{firehoseConfiguration :: Maybe FirehoseConfigurationProperty
firehoseConfiguration = FirehoseConfigurationProperty
-> Maybe FirehoseConfigurationProperty
forall a. a -> Maybe a
forall (f :: * -> *) a. Applicative f => a -> f a
Prelude.pure PropertyType "FirehoseConfiguration" LogConfigurationProperty
FirehoseConfigurationProperty
newValue, Maybe (Value Text)
Maybe CloudWatchLogsConfigurationProperty
Maybe S3ConfigurationProperty
()
haddock_workaround_ :: ()
cloudWatchLogsConfiguration :: Maybe CloudWatchLogsConfigurationProperty
eventSource :: Maybe (Value Text)
logLevel :: Maybe (Value Text)
s3Configuration :: Maybe S3ConfigurationProperty
haddock_workaround_ :: ()
cloudWatchLogsConfiguration :: Maybe CloudWatchLogsConfigurationProperty
eventSource :: Maybe (Value Text)
logLevel :: Maybe (Value Text)
s3Configuration :: Maybe S3ConfigurationProperty
..}
instance Property "LogLevel" LogConfigurationProperty where
type PropertyType "LogLevel" LogConfigurationProperty = Value Prelude.Text
set :: PropertyType "LogLevel" LogConfigurationProperty
-> LogConfigurationProperty -> LogConfigurationProperty
set PropertyType "LogLevel" LogConfigurationProperty
newValue LogConfigurationProperty {Maybe (Value Text)
Maybe CloudWatchLogsConfigurationProperty
Maybe FirehoseConfigurationProperty
Maybe S3ConfigurationProperty
()
haddock_workaround_ :: LogConfigurationProperty -> ()
cloudWatchLogsConfiguration :: LogConfigurationProperty
-> Maybe CloudWatchLogsConfigurationProperty
eventSource :: LogConfigurationProperty -> Maybe (Value Text)
firehoseConfiguration :: LogConfigurationProperty -> Maybe FirehoseConfigurationProperty
logLevel :: LogConfigurationProperty -> Maybe (Value Text)
s3Configuration :: LogConfigurationProperty -> Maybe S3ConfigurationProperty
haddock_workaround_ :: ()
cloudWatchLogsConfiguration :: Maybe CloudWatchLogsConfigurationProperty
eventSource :: Maybe (Value Text)
firehoseConfiguration :: Maybe FirehoseConfigurationProperty
logLevel :: Maybe (Value Text)
s3Configuration :: Maybe S3ConfigurationProperty
..}
= LogConfigurationProperty {logLevel :: Maybe (Value Text)
logLevel = Value Text -> Maybe (Value Text)
forall a. a -> Maybe a
forall (f :: * -> *) a. Applicative f => a -> f a
Prelude.pure PropertyType "LogLevel" LogConfigurationProperty
Value Text
newValue, Maybe (Value Text)
Maybe CloudWatchLogsConfigurationProperty
Maybe FirehoseConfigurationProperty
Maybe S3ConfigurationProperty
()
haddock_workaround_ :: ()
cloudWatchLogsConfiguration :: Maybe CloudWatchLogsConfigurationProperty
eventSource :: Maybe (Value Text)
firehoseConfiguration :: Maybe FirehoseConfigurationProperty
s3Configuration :: Maybe S3ConfigurationProperty
haddock_workaround_ :: ()
cloudWatchLogsConfiguration :: Maybe CloudWatchLogsConfigurationProperty
eventSource :: Maybe (Value Text)
firehoseConfiguration :: Maybe FirehoseConfigurationProperty
s3Configuration :: Maybe S3ConfigurationProperty
..}
instance Property "S3Configuration" LogConfigurationProperty where
type PropertyType "S3Configuration" LogConfigurationProperty = S3ConfigurationProperty
set :: PropertyType "S3Configuration" LogConfigurationProperty
-> LogConfigurationProperty -> LogConfigurationProperty
set PropertyType "S3Configuration" LogConfigurationProperty
newValue LogConfigurationProperty {Maybe (Value Text)
Maybe CloudWatchLogsConfigurationProperty
Maybe FirehoseConfigurationProperty
Maybe S3ConfigurationProperty
()
haddock_workaround_ :: LogConfigurationProperty -> ()
cloudWatchLogsConfiguration :: LogConfigurationProperty
-> Maybe CloudWatchLogsConfigurationProperty
eventSource :: LogConfigurationProperty -> Maybe (Value Text)
firehoseConfiguration :: LogConfigurationProperty -> Maybe FirehoseConfigurationProperty
logLevel :: LogConfigurationProperty -> Maybe (Value Text)
s3Configuration :: LogConfigurationProperty -> Maybe S3ConfigurationProperty
haddock_workaround_ :: ()
cloudWatchLogsConfiguration :: Maybe CloudWatchLogsConfigurationProperty
eventSource :: Maybe (Value Text)
firehoseConfiguration :: Maybe FirehoseConfigurationProperty
logLevel :: Maybe (Value Text)
s3Configuration :: Maybe S3ConfigurationProperty
..}
= LogConfigurationProperty
{s3Configuration :: Maybe S3ConfigurationProperty
s3Configuration = S3ConfigurationProperty -> Maybe S3ConfigurationProperty
forall a. a -> Maybe a
forall (f :: * -> *) a. Applicative f => a -> f a
Prelude.pure PropertyType "S3Configuration" LogConfigurationProperty
S3ConfigurationProperty
newValue, Maybe (Value Text)
Maybe CloudWatchLogsConfigurationProperty
Maybe FirehoseConfigurationProperty
()
haddock_workaround_ :: ()
cloudWatchLogsConfiguration :: Maybe CloudWatchLogsConfigurationProperty
eventSource :: Maybe (Value Text)
firehoseConfiguration :: Maybe FirehoseConfigurationProperty
logLevel :: Maybe (Value Text)
haddock_workaround_ :: ()
cloudWatchLogsConfiguration :: Maybe CloudWatchLogsConfigurationProperty
eventSource :: Maybe (Value Text)
firehoseConfiguration :: Maybe FirehoseConfigurationProperty
logLevel :: Maybe (Value Text)
..}