module Stratosphere.SMSVOICE.ConfigurationSet (
module Exports, ConfigurationSet(..), mkConfigurationSet
) where
import qualified Data.Aeson as JSON
import qualified Stratosphere.Prelude as Prelude
import Stratosphere.Property
import {-# SOURCE #-} Stratosphere.SMSVOICE.ConfigurationSet.EventDestinationProperty as Exports
import Stratosphere.ResourceProperties
import Stratosphere.Tag
import Stratosphere.Value
data ConfigurationSet
=
ConfigurationSet {ConfigurationSet -> ()
haddock_workaround_ :: (),
ConfigurationSet -> Maybe (Value Text)
configurationSetName :: (Prelude.Maybe (Value Prelude.Text)),
ConfigurationSet -> Maybe (Value Text)
defaultSenderId :: (Prelude.Maybe (Value Prelude.Text)),
ConfigurationSet -> Maybe [EventDestinationProperty]
eventDestinations :: (Prelude.Maybe [EventDestinationProperty]),
ConfigurationSet -> Maybe (Value Bool)
messageFeedbackEnabled :: (Prelude.Maybe (Value Prelude.Bool)),
ConfigurationSet -> Maybe (Value Text)
protectConfigurationId :: (Prelude.Maybe (Value Prelude.Text)),
ConfigurationSet -> Maybe [Tag]
tags :: (Prelude.Maybe [Tag])}
deriving stock (ConfigurationSet -> ConfigurationSet -> Bool
(ConfigurationSet -> ConfigurationSet -> Bool)
-> (ConfigurationSet -> ConfigurationSet -> Bool)
-> Eq ConfigurationSet
forall a. (a -> a -> Bool) -> (a -> a -> Bool) -> Eq a
$c== :: ConfigurationSet -> ConfigurationSet -> Bool
== :: ConfigurationSet -> ConfigurationSet -> Bool
$c/= :: ConfigurationSet -> ConfigurationSet -> Bool
/= :: ConfigurationSet -> ConfigurationSet -> Bool
Prelude.Eq, Int -> ConfigurationSet -> ShowS
[ConfigurationSet] -> ShowS
ConfigurationSet -> String
(Int -> ConfigurationSet -> ShowS)
-> (ConfigurationSet -> String)
-> ([ConfigurationSet] -> ShowS)
-> Show ConfigurationSet
forall a.
(Int -> a -> ShowS) -> (a -> String) -> ([a] -> ShowS) -> Show a
$cshowsPrec :: Int -> ConfigurationSet -> ShowS
showsPrec :: Int -> ConfigurationSet -> ShowS
$cshow :: ConfigurationSet -> String
show :: ConfigurationSet -> String
$cshowList :: [ConfigurationSet] -> ShowS
showList :: [ConfigurationSet] -> ShowS
Prelude.Show)
mkConfigurationSet :: ConfigurationSet
mkConfigurationSet :: ConfigurationSet
mkConfigurationSet
= ConfigurationSet
{haddock_workaround_ :: ()
haddock_workaround_ = (), configurationSetName :: Maybe (Value Text)
configurationSetName = Maybe (Value Text)
forall a. Maybe a
Prelude.Nothing,
defaultSenderId :: Maybe (Value Text)
defaultSenderId = Maybe (Value Text)
forall a. Maybe a
Prelude.Nothing,
eventDestinations :: Maybe [EventDestinationProperty]
eventDestinations = Maybe [EventDestinationProperty]
forall a. Maybe a
Prelude.Nothing,
messageFeedbackEnabled :: Maybe (Value Bool)
messageFeedbackEnabled = Maybe (Value Bool)
forall a. Maybe a
Prelude.Nothing,
protectConfigurationId :: Maybe (Value Text)
protectConfigurationId = Maybe (Value Text)
forall a. Maybe a
Prelude.Nothing, tags :: Maybe [Tag]
tags = Maybe [Tag]
forall a. Maybe a
Prelude.Nothing}
instance ToResourceProperties ConfigurationSet where
toResourceProperties :: ConfigurationSet -> ResourceProperties
toResourceProperties ConfigurationSet {Maybe [Tag]
Maybe [EventDestinationProperty]
Maybe (Value Bool)
Maybe (Value Text)
()
haddock_workaround_ :: ConfigurationSet -> ()
configurationSetName :: ConfigurationSet -> Maybe (Value Text)
defaultSenderId :: ConfigurationSet -> Maybe (Value Text)
eventDestinations :: ConfigurationSet -> Maybe [EventDestinationProperty]
messageFeedbackEnabled :: ConfigurationSet -> Maybe (Value Bool)
protectConfigurationId :: ConfigurationSet -> Maybe (Value Text)
tags :: ConfigurationSet -> Maybe [Tag]
haddock_workaround_ :: ()
configurationSetName :: Maybe (Value Text)
defaultSenderId :: Maybe (Value Text)
eventDestinations :: Maybe [EventDestinationProperty]
messageFeedbackEnabled :: Maybe (Value Bool)
protectConfigurationId :: Maybe (Value Text)
tags :: Maybe [Tag]
..}
= ResourceProperties
{awsType :: Text
awsType = Text
"AWS::SMSVOICE::ConfigurationSet",
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
"ConfigurationSetName" (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)
configurationSetName,
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
"DefaultSenderId" (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)
defaultSenderId,
Key -> [EventDestinationProperty] -> (Key, Value)
forall v. ToJSON v => Key -> v -> (Key, Value)
forall e kv v. (KeyValue e kv, ToJSON v) => Key -> v -> kv
(JSON..=) Key
"EventDestinations" ([EventDestinationProperty] -> (Key, Value))
-> Maybe [EventDestinationProperty] -> Maybe (Key, Value)
forall (f :: * -> *) a b. Functor f => (a -> b) -> f a -> f b
Prelude.<$> Maybe [EventDestinationProperty]
eventDestinations,
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
"MessageFeedbackEnabled"
(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)
messageFeedbackEnabled,
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
"ProtectConfigurationId"
(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)
protectConfigurationId,
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])}
instance JSON.ToJSON ConfigurationSet where
toJSON :: ConfigurationSet -> Value
toJSON ConfigurationSet {Maybe [Tag]
Maybe [EventDestinationProperty]
Maybe (Value Bool)
Maybe (Value Text)
()
haddock_workaround_ :: ConfigurationSet -> ()
configurationSetName :: ConfigurationSet -> Maybe (Value Text)
defaultSenderId :: ConfigurationSet -> Maybe (Value Text)
eventDestinations :: ConfigurationSet -> Maybe [EventDestinationProperty]
messageFeedbackEnabled :: ConfigurationSet -> Maybe (Value Bool)
protectConfigurationId :: ConfigurationSet -> Maybe (Value Text)
tags :: ConfigurationSet -> Maybe [Tag]
haddock_workaround_ :: ()
configurationSetName :: Maybe (Value Text)
defaultSenderId :: Maybe (Value Text)
eventDestinations :: Maybe [EventDestinationProperty]
messageFeedbackEnabled :: Maybe (Value Bool)
protectConfigurationId :: Maybe (Value Text)
tags :: Maybe [Tag]
..}
= [(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
"ConfigurationSetName" (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)
configurationSetName,
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
"DefaultSenderId" (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)
defaultSenderId,
Key -> [EventDestinationProperty] -> (Key, Value)
forall v. ToJSON v => Key -> v -> (Key, Value)
forall e kv v. (KeyValue e kv, ToJSON v) => Key -> v -> kv
(JSON..=) Key
"EventDestinations" ([EventDestinationProperty] -> (Key, Value))
-> Maybe [EventDestinationProperty] -> Maybe (Key, Value)
forall (f :: * -> *) a b. Functor f => (a -> b) -> f a -> f b
Prelude.<$> Maybe [EventDestinationProperty]
eventDestinations,
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
"MessageFeedbackEnabled"
(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)
messageFeedbackEnabled,
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
"ProtectConfigurationId"
(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)
protectConfigurationId,
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]))
instance Property "ConfigurationSetName" ConfigurationSet where
type PropertyType "ConfigurationSetName" ConfigurationSet = Value Prelude.Text
set :: PropertyType "ConfigurationSetName" ConfigurationSet
-> ConfigurationSet -> ConfigurationSet
set PropertyType "ConfigurationSetName" ConfigurationSet
newValue ConfigurationSet {Maybe [Tag]
Maybe [EventDestinationProperty]
Maybe (Value Bool)
Maybe (Value Text)
()
haddock_workaround_ :: ConfigurationSet -> ()
configurationSetName :: ConfigurationSet -> Maybe (Value Text)
defaultSenderId :: ConfigurationSet -> Maybe (Value Text)
eventDestinations :: ConfigurationSet -> Maybe [EventDestinationProperty]
messageFeedbackEnabled :: ConfigurationSet -> Maybe (Value Bool)
protectConfigurationId :: ConfigurationSet -> Maybe (Value Text)
tags :: ConfigurationSet -> Maybe [Tag]
haddock_workaround_ :: ()
configurationSetName :: Maybe (Value Text)
defaultSenderId :: Maybe (Value Text)
eventDestinations :: Maybe [EventDestinationProperty]
messageFeedbackEnabled :: Maybe (Value Bool)
protectConfigurationId :: Maybe (Value Text)
tags :: Maybe [Tag]
..}
= ConfigurationSet
{configurationSetName :: Maybe (Value Text)
configurationSetName = Value Text -> Maybe (Value Text)
forall a. a -> Maybe a
forall (f :: * -> *) a. Applicative f => a -> f a
Prelude.pure PropertyType "ConfigurationSetName" ConfigurationSet
Value Text
newValue, Maybe [Tag]
Maybe [EventDestinationProperty]
Maybe (Value Bool)
Maybe (Value Text)
()
haddock_workaround_ :: ()
defaultSenderId :: Maybe (Value Text)
eventDestinations :: Maybe [EventDestinationProperty]
messageFeedbackEnabled :: Maybe (Value Bool)
protectConfigurationId :: Maybe (Value Text)
tags :: Maybe [Tag]
haddock_workaround_ :: ()
defaultSenderId :: Maybe (Value Text)
eventDestinations :: Maybe [EventDestinationProperty]
messageFeedbackEnabled :: Maybe (Value Bool)
protectConfigurationId :: Maybe (Value Text)
tags :: Maybe [Tag]
..}
instance Property "DefaultSenderId" ConfigurationSet where
type PropertyType "DefaultSenderId" ConfigurationSet = Value Prelude.Text
set :: PropertyType "DefaultSenderId" ConfigurationSet
-> ConfigurationSet -> ConfigurationSet
set PropertyType "DefaultSenderId" ConfigurationSet
newValue ConfigurationSet {Maybe [Tag]
Maybe [EventDestinationProperty]
Maybe (Value Bool)
Maybe (Value Text)
()
haddock_workaround_ :: ConfigurationSet -> ()
configurationSetName :: ConfigurationSet -> Maybe (Value Text)
defaultSenderId :: ConfigurationSet -> Maybe (Value Text)
eventDestinations :: ConfigurationSet -> Maybe [EventDestinationProperty]
messageFeedbackEnabled :: ConfigurationSet -> Maybe (Value Bool)
protectConfigurationId :: ConfigurationSet -> Maybe (Value Text)
tags :: ConfigurationSet -> Maybe [Tag]
haddock_workaround_ :: ()
configurationSetName :: Maybe (Value Text)
defaultSenderId :: Maybe (Value Text)
eventDestinations :: Maybe [EventDestinationProperty]
messageFeedbackEnabled :: Maybe (Value Bool)
protectConfigurationId :: Maybe (Value Text)
tags :: Maybe [Tag]
..}
= ConfigurationSet {defaultSenderId :: Maybe (Value Text)
defaultSenderId = Value Text -> Maybe (Value Text)
forall a. a -> Maybe a
forall (f :: * -> *) a. Applicative f => a -> f a
Prelude.pure PropertyType "DefaultSenderId" ConfigurationSet
Value Text
newValue, Maybe [Tag]
Maybe [EventDestinationProperty]
Maybe (Value Bool)
Maybe (Value Text)
()
haddock_workaround_ :: ()
configurationSetName :: Maybe (Value Text)
eventDestinations :: Maybe [EventDestinationProperty]
messageFeedbackEnabled :: Maybe (Value Bool)
protectConfigurationId :: Maybe (Value Text)
tags :: Maybe [Tag]
haddock_workaround_ :: ()
configurationSetName :: Maybe (Value Text)
eventDestinations :: Maybe [EventDestinationProperty]
messageFeedbackEnabled :: Maybe (Value Bool)
protectConfigurationId :: Maybe (Value Text)
tags :: Maybe [Tag]
..}
instance Property "EventDestinations" ConfigurationSet where
type PropertyType "EventDestinations" ConfigurationSet = [EventDestinationProperty]
set :: PropertyType "EventDestinations" ConfigurationSet
-> ConfigurationSet -> ConfigurationSet
set PropertyType "EventDestinations" ConfigurationSet
newValue ConfigurationSet {Maybe [Tag]
Maybe [EventDestinationProperty]
Maybe (Value Bool)
Maybe (Value Text)
()
haddock_workaround_ :: ConfigurationSet -> ()
configurationSetName :: ConfigurationSet -> Maybe (Value Text)
defaultSenderId :: ConfigurationSet -> Maybe (Value Text)
eventDestinations :: ConfigurationSet -> Maybe [EventDestinationProperty]
messageFeedbackEnabled :: ConfigurationSet -> Maybe (Value Bool)
protectConfigurationId :: ConfigurationSet -> Maybe (Value Text)
tags :: ConfigurationSet -> Maybe [Tag]
haddock_workaround_ :: ()
configurationSetName :: Maybe (Value Text)
defaultSenderId :: Maybe (Value Text)
eventDestinations :: Maybe [EventDestinationProperty]
messageFeedbackEnabled :: Maybe (Value Bool)
protectConfigurationId :: Maybe (Value Text)
tags :: Maybe [Tag]
..}
= ConfigurationSet {eventDestinations :: Maybe [EventDestinationProperty]
eventDestinations = [EventDestinationProperty] -> Maybe [EventDestinationProperty]
forall a. a -> Maybe a
forall (f :: * -> *) a. Applicative f => a -> f a
Prelude.pure [EventDestinationProperty]
PropertyType "EventDestinations" ConfigurationSet
newValue, Maybe [Tag]
Maybe (Value Bool)
Maybe (Value Text)
()
haddock_workaround_ :: ()
configurationSetName :: Maybe (Value Text)
defaultSenderId :: Maybe (Value Text)
messageFeedbackEnabled :: Maybe (Value Bool)
protectConfigurationId :: Maybe (Value Text)
tags :: Maybe [Tag]
haddock_workaround_ :: ()
configurationSetName :: Maybe (Value Text)
defaultSenderId :: Maybe (Value Text)
messageFeedbackEnabled :: Maybe (Value Bool)
protectConfigurationId :: Maybe (Value Text)
tags :: Maybe [Tag]
..}
instance Property "MessageFeedbackEnabled" ConfigurationSet where
type PropertyType "MessageFeedbackEnabled" ConfigurationSet = Value Prelude.Bool
set :: PropertyType "MessageFeedbackEnabled" ConfigurationSet
-> ConfigurationSet -> ConfigurationSet
set PropertyType "MessageFeedbackEnabled" ConfigurationSet
newValue ConfigurationSet {Maybe [Tag]
Maybe [EventDestinationProperty]
Maybe (Value Bool)
Maybe (Value Text)
()
haddock_workaround_ :: ConfigurationSet -> ()
configurationSetName :: ConfigurationSet -> Maybe (Value Text)
defaultSenderId :: ConfigurationSet -> Maybe (Value Text)
eventDestinations :: ConfigurationSet -> Maybe [EventDestinationProperty]
messageFeedbackEnabled :: ConfigurationSet -> Maybe (Value Bool)
protectConfigurationId :: ConfigurationSet -> Maybe (Value Text)
tags :: ConfigurationSet -> Maybe [Tag]
haddock_workaround_ :: ()
configurationSetName :: Maybe (Value Text)
defaultSenderId :: Maybe (Value Text)
eventDestinations :: Maybe [EventDestinationProperty]
messageFeedbackEnabled :: Maybe (Value Bool)
protectConfigurationId :: Maybe (Value Text)
tags :: Maybe [Tag]
..}
= ConfigurationSet
{messageFeedbackEnabled :: Maybe (Value Bool)
messageFeedbackEnabled = Value Bool -> Maybe (Value Bool)
forall a. a -> Maybe a
forall (f :: * -> *) a. Applicative f => a -> f a
Prelude.pure PropertyType "MessageFeedbackEnabled" ConfigurationSet
Value Bool
newValue, Maybe [Tag]
Maybe [EventDestinationProperty]
Maybe (Value Text)
()
haddock_workaround_ :: ()
configurationSetName :: Maybe (Value Text)
defaultSenderId :: Maybe (Value Text)
eventDestinations :: Maybe [EventDestinationProperty]
protectConfigurationId :: Maybe (Value Text)
tags :: Maybe [Tag]
haddock_workaround_ :: ()
configurationSetName :: Maybe (Value Text)
defaultSenderId :: Maybe (Value Text)
eventDestinations :: Maybe [EventDestinationProperty]
protectConfigurationId :: Maybe (Value Text)
tags :: Maybe [Tag]
..}
instance Property "ProtectConfigurationId" ConfigurationSet where
type PropertyType "ProtectConfigurationId" ConfigurationSet = Value Prelude.Text
set :: PropertyType "ProtectConfigurationId" ConfigurationSet
-> ConfigurationSet -> ConfigurationSet
set PropertyType "ProtectConfigurationId" ConfigurationSet
newValue ConfigurationSet {Maybe [Tag]
Maybe [EventDestinationProperty]
Maybe (Value Bool)
Maybe (Value Text)
()
haddock_workaround_ :: ConfigurationSet -> ()
configurationSetName :: ConfigurationSet -> Maybe (Value Text)
defaultSenderId :: ConfigurationSet -> Maybe (Value Text)
eventDestinations :: ConfigurationSet -> Maybe [EventDestinationProperty]
messageFeedbackEnabled :: ConfigurationSet -> Maybe (Value Bool)
protectConfigurationId :: ConfigurationSet -> Maybe (Value Text)
tags :: ConfigurationSet -> Maybe [Tag]
haddock_workaround_ :: ()
configurationSetName :: Maybe (Value Text)
defaultSenderId :: Maybe (Value Text)
eventDestinations :: Maybe [EventDestinationProperty]
messageFeedbackEnabled :: Maybe (Value Bool)
protectConfigurationId :: Maybe (Value Text)
tags :: Maybe [Tag]
..}
= ConfigurationSet
{protectConfigurationId :: Maybe (Value Text)
protectConfigurationId = Value Text -> Maybe (Value Text)
forall a. a -> Maybe a
forall (f :: * -> *) a. Applicative f => a -> f a
Prelude.pure PropertyType "ProtectConfigurationId" ConfigurationSet
Value Text
newValue, Maybe [Tag]
Maybe [EventDestinationProperty]
Maybe (Value Bool)
Maybe (Value Text)
()
haddock_workaround_ :: ()
configurationSetName :: Maybe (Value Text)
defaultSenderId :: Maybe (Value Text)
eventDestinations :: Maybe [EventDestinationProperty]
messageFeedbackEnabled :: Maybe (Value Bool)
tags :: Maybe [Tag]
haddock_workaround_ :: ()
configurationSetName :: Maybe (Value Text)
defaultSenderId :: Maybe (Value Text)
eventDestinations :: Maybe [EventDestinationProperty]
messageFeedbackEnabled :: Maybe (Value Bool)
tags :: Maybe [Tag]
..}
instance Property "Tags" ConfigurationSet where
type PropertyType "Tags" ConfigurationSet = [Tag]
set :: PropertyType "Tags" ConfigurationSet
-> ConfigurationSet -> ConfigurationSet
set PropertyType "Tags" ConfigurationSet
newValue ConfigurationSet {Maybe [Tag]
Maybe [EventDestinationProperty]
Maybe (Value Bool)
Maybe (Value Text)
()
haddock_workaround_ :: ConfigurationSet -> ()
configurationSetName :: ConfigurationSet -> Maybe (Value Text)
defaultSenderId :: ConfigurationSet -> Maybe (Value Text)
eventDestinations :: ConfigurationSet -> Maybe [EventDestinationProperty]
messageFeedbackEnabled :: ConfigurationSet -> Maybe (Value Bool)
protectConfigurationId :: ConfigurationSet -> Maybe (Value Text)
tags :: ConfigurationSet -> Maybe [Tag]
haddock_workaround_ :: ()
configurationSetName :: Maybe (Value Text)
defaultSenderId :: Maybe (Value Text)
eventDestinations :: Maybe [EventDestinationProperty]
messageFeedbackEnabled :: Maybe (Value Bool)
protectConfigurationId :: Maybe (Value Text)
tags :: Maybe [Tag]
..}
= ConfigurationSet {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" ConfigurationSet
newValue, Maybe [EventDestinationProperty]
Maybe (Value Bool)
Maybe (Value Text)
()
haddock_workaround_ :: ()
configurationSetName :: Maybe (Value Text)
defaultSenderId :: Maybe (Value Text)
eventDestinations :: Maybe [EventDestinationProperty]
messageFeedbackEnabled :: Maybe (Value Bool)
protectConfigurationId :: Maybe (Value Text)
haddock_workaround_ :: ()
configurationSetName :: Maybe (Value Text)
defaultSenderId :: Maybe (Value Text)
eventDestinations :: Maybe [EventDestinationProperty]
messageFeedbackEnabled :: Maybe (Value Bool)
protectConfigurationId :: Maybe (Value Text)
..}