module Stratosphere.Timestream.ScheduledQuery (
module Exports, ScheduledQuery(..), mkScheduledQuery
) where
import qualified Data.Aeson as JSON
import qualified Stratosphere.Prelude as Prelude
import Stratosphere.Property
import {-# SOURCE #-} Stratosphere.Timestream.ScheduledQuery.ErrorReportConfigurationProperty as Exports
import {-# SOURCE #-} Stratosphere.Timestream.ScheduledQuery.NotificationConfigurationProperty as Exports
import {-# SOURCE #-} Stratosphere.Timestream.ScheduledQuery.ScheduleConfigurationProperty as Exports
import {-# SOURCE #-} Stratosphere.Timestream.ScheduledQuery.TargetConfigurationProperty as Exports
import Stratosphere.ResourceProperties
import Stratosphere.Tag
import Stratosphere.Value
data ScheduledQuery
=
ScheduledQuery {ScheduledQuery -> ()
haddock_workaround_ :: (),
ScheduledQuery -> Maybe (Value Text)
clientToken :: (Prelude.Maybe (Value Prelude.Text)),
ScheduledQuery -> ErrorReportConfigurationProperty
errorReportConfiguration :: ErrorReportConfigurationProperty,
ScheduledQuery -> Maybe (Value Text)
kmsKeyId :: (Prelude.Maybe (Value Prelude.Text)),
ScheduledQuery -> NotificationConfigurationProperty
notificationConfiguration :: NotificationConfigurationProperty,
ScheduledQuery -> Value Text
queryString :: (Value Prelude.Text),
ScheduledQuery -> ScheduleConfigurationProperty
scheduleConfiguration :: ScheduleConfigurationProperty,
ScheduledQuery -> Value Text
scheduledQueryExecutionRoleArn :: (Value Prelude.Text),
ScheduledQuery -> Maybe (Value Text)
scheduledQueryName :: (Prelude.Maybe (Value Prelude.Text)),
ScheduledQuery -> Maybe [Tag]
tags :: (Prelude.Maybe [Tag]),
ScheduledQuery -> Maybe TargetConfigurationProperty
targetConfiguration :: (Prelude.Maybe TargetConfigurationProperty)}
deriving stock (ScheduledQuery -> ScheduledQuery -> Bool
(ScheduledQuery -> ScheduledQuery -> Bool)
-> (ScheduledQuery -> ScheduledQuery -> Bool) -> Eq ScheduledQuery
forall a. (a -> a -> Bool) -> (a -> a -> Bool) -> Eq a
$c== :: ScheduledQuery -> ScheduledQuery -> Bool
== :: ScheduledQuery -> ScheduledQuery -> Bool
$c/= :: ScheduledQuery -> ScheduledQuery -> Bool
/= :: ScheduledQuery -> ScheduledQuery -> Bool
Prelude.Eq, Int -> ScheduledQuery -> ShowS
[ScheduledQuery] -> ShowS
ScheduledQuery -> String
(Int -> ScheduledQuery -> ShowS)
-> (ScheduledQuery -> String)
-> ([ScheduledQuery] -> ShowS)
-> Show ScheduledQuery
forall a.
(Int -> a -> ShowS) -> (a -> String) -> ([a] -> ShowS) -> Show a
$cshowsPrec :: Int -> ScheduledQuery -> ShowS
showsPrec :: Int -> ScheduledQuery -> ShowS
$cshow :: ScheduledQuery -> String
show :: ScheduledQuery -> String
$cshowList :: [ScheduledQuery] -> ShowS
showList :: [ScheduledQuery] -> ShowS
Prelude.Show)
mkScheduledQuery ::
ErrorReportConfigurationProperty
-> NotificationConfigurationProperty
-> Value Prelude.Text
-> ScheduleConfigurationProperty
-> Value Prelude.Text -> ScheduledQuery
mkScheduledQuery :: ErrorReportConfigurationProperty
-> NotificationConfigurationProperty
-> Value Text
-> ScheduleConfigurationProperty
-> Value Text
-> ScheduledQuery
mkScheduledQuery
ErrorReportConfigurationProperty
errorReportConfiguration
NotificationConfigurationProperty
notificationConfiguration
Value Text
queryString
ScheduleConfigurationProperty
scheduleConfiguration
Value Text
scheduledQueryExecutionRoleArn
= ScheduledQuery
{haddock_workaround_ :: ()
haddock_workaround_ = (),
errorReportConfiguration :: ErrorReportConfigurationProperty
errorReportConfiguration = ErrorReportConfigurationProperty
errorReportConfiguration,
notificationConfiguration :: NotificationConfigurationProperty
notificationConfiguration = NotificationConfigurationProperty
notificationConfiguration,
queryString :: Value Text
queryString = Value Text
queryString,
scheduleConfiguration :: ScheduleConfigurationProperty
scheduleConfiguration = ScheduleConfigurationProperty
scheduleConfiguration,
scheduledQueryExecutionRoleArn :: Value Text
scheduledQueryExecutionRoleArn = Value Text
scheduledQueryExecutionRoleArn,
clientToken :: Maybe (Value Text)
clientToken = Maybe (Value Text)
forall a. Maybe a
Prelude.Nothing, kmsKeyId :: Maybe (Value Text)
kmsKeyId = Maybe (Value Text)
forall a. Maybe a
Prelude.Nothing,
scheduledQueryName :: Maybe (Value Text)
scheduledQueryName = Maybe (Value Text)
forall a. Maybe a
Prelude.Nothing, tags :: Maybe [Tag]
tags = Maybe [Tag]
forall a. Maybe a
Prelude.Nothing,
targetConfiguration :: Maybe TargetConfigurationProperty
targetConfiguration = Maybe TargetConfigurationProperty
forall a. Maybe a
Prelude.Nothing}
instance ToResourceProperties ScheduledQuery where
toResourceProperties :: ScheduledQuery -> ResourceProperties
toResourceProperties ScheduledQuery {Maybe [Tag]
Maybe (Value Text)
Maybe TargetConfigurationProperty
()
Value Text
ErrorReportConfigurationProperty
ScheduleConfigurationProperty
NotificationConfigurationProperty
haddock_workaround_ :: ScheduledQuery -> ()
clientToken :: ScheduledQuery -> Maybe (Value Text)
errorReportConfiguration :: ScheduledQuery -> ErrorReportConfigurationProperty
kmsKeyId :: ScheduledQuery -> Maybe (Value Text)
notificationConfiguration :: ScheduledQuery -> NotificationConfigurationProperty
queryString :: ScheduledQuery -> Value Text
scheduleConfiguration :: ScheduledQuery -> ScheduleConfigurationProperty
scheduledQueryExecutionRoleArn :: ScheduledQuery -> Value Text
scheduledQueryName :: ScheduledQuery -> Maybe (Value Text)
tags :: ScheduledQuery -> Maybe [Tag]
targetConfiguration :: ScheduledQuery -> Maybe TargetConfigurationProperty
haddock_workaround_ :: ()
clientToken :: Maybe (Value Text)
errorReportConfiguration :: ErrorReportConfigurationProperty
kmsKeyId :: Maybe (Value Text)
notificationConfiguration :: NotificationConfigurationProperty
queryString :: Value Text
scheduleConfiguration :: ScheduleConfigurationProperty
scheduledQueryExecutionRoleArn :: Value Text
scheduledQueryName :: Maybe (Value Text)
tags :: Maybe [Tag]
targetConfiguration :: Maybe TargetConfigurationProperty
..}
= ResourceProperties
{awsType :: Text
awsType = Text
"AWS::Timestream::ScheduledQuery",
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
"ErrorReportConfiguration" Key -> ErrorReportConfigurationProperty -> (Key, Value)
forall v. ToJSON v => Key -> v -> (Key, Value)
forall e kv v. (KeyValue e kv, ToJSON v) => Key -> v -> kv
JSON..= ErrorReportConfigurationProperty
errorReportConfiguration,
Key
"NotificationConfiguration" Key -> NotificationConfigurationProperty -> (Key, Value)
forall v. ToJSON v => Key -> v -> (Key, Value)
forall e kv v. (KeyValue e kv, ToJSON v) => Key -> v -> kv
JSON..= NotificationConfigurationProperty
notificationConfiguration,
Key
"QueryString" 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
queryString,
Key
"ScheduleConfiguration" Key -> ScheduleConfigurationProperty -> (Key, Value)
forall v. ToJSON v => Key -> v -> (Key, Value)
forall e kv v. (KeyValue e kv, ToJSON v) => Key -> v -> kv
JSON..= ScheduleConfigurationProperty
scheduleConfiguration,
Key
"ScheduledQueryExecutionRoleArn"
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
scheduledQueryExecutionRoleArn]
([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
"ClientToken" (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)
clientToken,
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
"KmsKeyId" (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)
kmsKeyId,
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
"ScheduledQueryName" (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)
scheduledQueryName,
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 -> TargetConfigurationProperty -> (Key, Value)
forall v. ToJSON v => Key -> v -> (Key, Value)
forall e kv v. (KeyValue e kv, ToJSON v) => Key -> v -> kv
(JSON..=) Key
"TargetConfiguration" (TargetConfigurationProperty -> (Key, Value))
-> Maybe TargetConfigurationProperty -> Maybe (Key, Value)
forall (f :: * -> *) a b. Functor f => (a -> b) -> f a -> f b
Prelude.<$> Maybe TargetConfigurationProperty
targetConfiguration]))}
instance JSON.ToJSON ScheduledQuery where
toJSON :: ScheduledQuery -> Value
toJSON ScheduledQuery {Maybe [Tag]
Maybe (Value Text)
Maybe TargetConfigurationProperty
()
Value Text
ErrorReportConfigurationProperty
ScheduleConfigurationProperty
NotificationConfigurationProperty
haddock_workaround_ :: ScheduledQuery -> ()
clientToken :: ScheduledQuery -> Maybe (Value Text)
errorReportConfiguration :: ScheduledQuery -> ErrorReportConfigurationProperty
kmsKeyId :: ScheduledQuery -> Maybe (Value Text)
notificationConfiguration :: ScheduledQuery -> NotificationConfigurationProperty
queryString :: ScheduledQuery -> Value Text
scheduleConfiguration :: ScheduledQuery -> ScheduleConfigurationProperty
scheduledQueryExecutionRoleArn :: ScheduledQuery -> Value Text
scheduledQueryName :: ScheduledQuery -> Maybe (Value Text)
tags :: ScheduledQuery -> Maybe [Tag]
targetConfiguration :: ScheduledQuery -> Maybe TargetConfigurationProperty
haddock_workaround_ :: ()
clientToken :: Maybe (Value Text)
errorReportConfiguration :: ErrorReportConfigurationProperty
kmsKeyId :: Maybe (Value Text)
notificationConfiguration :: NotificationConfigurationProperty
queryString :: Value Text
scheduleConfiguration :: ScheduleConfigurationProperty
scheduledQueryExecutionRoleArn :: Value Text
scheduledQueryName :: Maybe (Value Text)
tags :: Maybe [Tag]
targetConfiguration :: Maybe TargetConfigurationProperty
..}
= [(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
"ErrorReportConfiguration" Key -> ErrorReportConfigurationProperty -> (Key, Value)
forall v. ToJSON v => Key -> v -> (Key, Value)
forall e kv v. (KeyValue e kv, ToJSON v) => Key -> v -> kv
JSON..= ErrorReportConfigurationProperty
errorReportConfiguration,
Key
"NotificationConfiguration" Key -> NotificationConfigurationProperty -> (Key, Value)
forall v. ToJSON v => Key -> v -> (Key, Value)
forall e kv v. (KeyValue e kv, ToJSON v) => Key -> v -> kv
JSON..= NotificationConfigurationProperty
notificationConfiguration,
Key
"QueryString" 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
queryString,
Key
"ScheduleConfiguration" Key -> ScheduleConfigurationProperty -> (Key, Value)
forall v. ToJSON v => Key -> v -> (Key, Value)
forall e kv v. (KeyValue e kv, ToJSON v) => Key -> v -> kv
JSON..= ScheduleConfigurationProperty
scheduleConfiguration,
Key
"ScheduledQueryExecutionRoleArn"
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
scheduledQueryExecutionRoleArn]
([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
"ClientToken" (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)
clientToken,
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
"KmsKeyId" (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)
kmsKeyId,
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
"ScheduledQueryName" (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)
scheduledQueryName,
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 -> TargetConfigurationProperty -> (Key, Value)
forall v. ToJSON v => Key -> v -> (Key, Value)
forall e kv v. (KeyValue e kv, ToJSON v) => Key -> v -> kv
(JSON..=) Key
"TargetConfiguration" (TargetConfigurationProperty -> (Key, Value))
-> Maybe TargetConfigurationProperty -> Maybe (Key, Value)
forall (f :: * -> *) a b. Functor f => (a -> b) -> f a -> f b
Prelude.<$> Maybe TargetConfigurationProperty
targetConfiguration])))
instance Property "ClientToken" ScheduledQuery where
type PropertyType "ClientToken" ScheduledQuery = Value Prelude.Text
set :: PropertyType "ClientToken" ScheduledQuery
-> ScheduledQuery -> ScheduledQuery
set PropertyType "ClientToken" ScheduledQuery
newValue ScheduledQuery {Maybe [Tag]
Maybe (Value Text)
Maybe TargetConfigurationProperty
()
Value Text
ErrorReportConfigurationProperty
ScheduleConfigurationProperty
NotificationConfigurationProperty
haddock_workaround_ :: ScheduledQuery -> ()
clientToken :: ScheduledQuery -> Maybe (Value Text)
errorReportConfiguration :: ScheduledQuery -> ErrorReportConfigurationProperty
kmsKeyId :: ScheduledQuery -> Maybe (Value Text)
notificationConfiguration :: ScheduledQuery -> NotificationConfigurationProperty
queryString :: ScheduledQuery -> Value Text
scheduleConfiguration :: ScheduledQuery -> ScheduleConfigurationProperty
scheduledQueryExecutionRoleArn :: ScheduledQuery -> Value Text
scheduledQueryName :: ScheduledQuery -> Maybe (Value Text)
tags :: ScheduledQuery -> Maybe [Tag]
targetConfiguration :: ScheduledQuery -> Maybe TargetConfigurationProperty
haddock_workaround_ :: ()
clientToken :: Maybe (Value Text)
errorReportConfiguration :: ErrorReportConfigurationProperty
kmsKeyId :: Maybe (Value Text)
notificationConfiguration :: NotificationConfigurationProperty
queryString :: Value Text
scheduleConfiguration :: ScheduleConfigurationProperty
scheduledQueryExecutionRoleArn :: Value Text
scheduledQueryName :: Maybe (Value Text)
tags :: Maybe [Tag]
targetConfiguration :: Maybe TargetConfigurationProperty
..}
= ScheduledQuery {clientToken :: Maybe (Value Text)
clientToken = Value Text -> Maybe (Value Text)
forall a. a -> Maybe a
forall (f :: * -> *) a. Applicative f => a -> f a
Prelude.pure PropertyType "ClientToken" ScheduledQuery
Value Text
newValue, Maybe [Tag]
Maybe (Value Text)
Maybe TargetConfigurationProperty
()
Value Text
ErrorReportConfigurationProperty
ScheduleConfigurationProperty
NotificationConfigurationProperty
haddock_workaround_ :: ()
errorReportConfiguration :: ErrorReportConfigurationProperty
kmsKeyId :: Maybe (Value Text)
notificationConfiguration :: NotificationConfigurationProperty
queryString :: Value Text
scheduleConfiguration :: ScheduleConfigurationProperty
scheduledQueryExecutionRoleArn :: Value Text
scheduledQueryName :: Maybe (Value Text)
tags :: Maybe [Tag]
targetConfiguration :: Maybe TargetConfigurationProperty
haddock_workaround_ :: ()
errorReportConfiguration :: ErrorReportConfigurationProperty
kmsKeyId :: Maybe (Value Text)
notificationConfiguration :: NotificationConfigurationProperty
queryString :: Value Text
scheduleConfiguration :: ScheduleConfigurationProperty
scheduledQueryExecutionRoleArn :: Value Text
scheduledQueryName :: Maybe (Value Text)
tags :: Maybe [Tag]
targetConfiguration :: Maybe TargetConfigurationProperty
..}
instance Property "ErrorReportConfiguration" ScheduledQuery where
type PropertyType "ErrorReportConfiguration" ScheduledQuery = ErrorReportConfigurationProperty
set :: PropertyType "ErrorReportConfiguration" ScheduledQuery
-> ScheduledQuery -> ScheduledQuery
set PropertyType "ErrorReportConfiguration" ScheduledQuery
newValue ScheduledQuery {Maybe [Tag]
Maybe (Value Text)
Maybe TargetConfigurationProperty
()
Value Text
ErrorReportConfigurationProperty
ScheduleConfigurationProperty
NotificationConfigurationProperty
haddock_workaround_ :: ScheduledQuery -> ()
clientToken :: ScheduledQuery -> Maybe (Value Text)
errorReportConfiguration :: ScheduledQuery -> ErrorReportConfigurationProperty
kmsKeyId :: ScheduledQuery -> Maybe (Value Text)
notificationConfiguration :: ScheduledQuery -> NotificationConfigurationProperty
queryString :: ScheduledQuery -> Value Text
scheduleConfiguration :: ScheduledQuery -> ScheduleConfigurationProperty
scheduledQueryExecutionRoleArn :: ScheduledQuery -> Value Text
scheduledQueryName :: ScheduledQuery -> Maybe (Value Text)
tags :: ScheduledQuery -> Maybe [Tag]
targetConfiguration :: ScheduledQuery -> Maybe TargetConfigurationProperty
haddock_workaround_ :: ()
clientToken :: Maybe (Value Text)
errorReportConfiguration :: ErrorReportConfigurationProperty
kmsKeyId :: Maybe (Value Text)
notificationConfiguration :: NotificationConfigurationProperty
queryString :: Value Text
scheduleConfiguration :: ScheduleConfigurationProperty
scheduledQueryExecutionRoleArn :: Value Text
scheduledQueryName :: Maybe (Value Text)
tags :: Maybe [Tag]
targetConfiguration :: Maybe TargetConfigurationProperty
..}
= ScheduledQuery {errorReportConfiguration :: ErrorReportConfigurationProperty
errorReportConfiguration = PropertyType "ErrorReportConfiguration" ScheduledQuery
ErrorReportConfigurationProperty
newValue, Maybe [Tag]
Maybe (Value Text)
Maybe TargetConfigurationProperty
()
Value Text
ScheduleConfigurationProperty
NotificationConfigurationProperty
haddock_workaround_ :: ()
clientToken :: Maybe (Value Text)
kmsKeyId :: Maybe (Value Text)
notificationConfiguration :: NotificationConfigurationProperty
queryString :: Value Text
scheduleConfiguration :: ScheduleConfigurationProperty
scheduledQueryExecutionRoleArn :: Value Text
scheduledQueryName :: Maybe (Value Text)
tags :: Maybe [Tag]
targetConfiguration :: Maybe TargetConfigurationProperty
haddock_workaround_ :: ()
clientToken :: Maybe (Value Text)
kmsKeyId :: Maybe (Value Text)
notificationConfiguration :: NotificationConfigurationProperty
queryString :: Value Text
scheduleConfiguration :: ScheduleConfigurationProperty
scheduledQueryExecutionRoleArn :: Value Text
scheduledQueryName :: Maybe (Value Text)
tags :: Maybe [Tag]
targetConfiguration :: Maybe TargetConfigurationProperty
..}
instance Property "KmsKeyId" ScheduledQuery where
type PropertyType "KmsKeyId" ScheduledQuery = Value Prelude.Text
set :: PropertyType "KmsKeyId" ScheduledQuery
-> ScheduledQuery -> ScheduledQuery
set PropertyType "KmsKeyId" ScheduledQuery
newValue ScheduledQuery {Maybe [Tag]
Maybe (Value Text)
Maybe TargetConfigurationProperty
()
Value Text
ErrorReportConfigurationProperty
ScheduleConfigurationProperty
NotificationConfigurationProperty
haddock_workaround_ :: ScheduledQuery -> ()
clientToken :: ScheduledQuery -> Maybe (Value Text)
errorReportConfiguration :: ScheduledQuery -> ErrorReportConfigurationProperty
kmsKeyId :: ScheduledQuery -> Maybe (Value Text)
notificationConfiguration :: ScheduledQuery -> NotificationConfigurationProperty
queryString :: ScheduledQuery -> Value Text
scheduleConfiguration :: ScheduledQuery -> ScheduleConfigurationProperty
scheduledQueryExecutionRoleArn :: ScheduledQuery -> Value Text
scheduledQueryName :: ScheduledQuery -> Maybe (Value Text)
tags :: ScheduledQuery -> Maybe [Tag]
targetConfiguration :: ScheduledQuery -> Maybe TargetConfigurationProperty
haddock_workaround_ :: ()
clientToken :: Maybe (Value Text)
errorReportConfiguration :: ErrorReportConfigurationProperty
kmsKeyId :: Maybe (Value Text)
notificationConfiguration :: NotificationConfigurationProperty
queryString :: Value Text
scheduleConfiguration :: ScheduleConfigurationProperty
scheduledQueryExecutionRoleArn :: Value Text
scheduledQueryName :: Maybe (Value Text)
tags :: Maybe [Tag]
targetConfiguration :: Maybe TargetConfigurationProperty
..}
= ScheduledQuery {kmsKeyId :: Maybe (Value Text)
kmsKeyId = Value Text -> Maybe (Value Text)
forall a. a -> Maybe a
forall (f :: * -> *) a. Applicative f => a -> f a
Prelude.pure PropertyType "KmsKeyId" ScheduledQuery
Value Text
newValue, Maybe [Tag]
Maybe (Value Text)
Maybe TargetConfigurationProperty
()
Value Text
ErrorReportConfigurationProperty
ScheduleConfigurationProperty
NotificationConfigurationProperty
haddock_workaround_ :: ()
clientToken :: Maybe (Value Text)
errorReportConfiguration :: ErrorReportConfigurationProperty
notificationConfiguration :: NotificationConfigurationProperty
queryString :: Value Text
scheduleConfiguration :: ScheduleConfigurationProperty
scheduledQueryExecutionRoleArn :: Value Text
scheduledQueryName :: Maybe (Value Text)
tags :: Maybe [Tag]
targetConfiguration :: Maybe TargetConfigurationProperty
haddock_workaround_ :: ()
clientToken :: Maybe (Value Text)
errorReportConfiguration :: ErrorReportConfigurationProperty
notificationConfiguration :: NotificationConfigurationProperty
queryString :: Value Text
scheduleConfiguration :: ScheduleConfigurationProperty
scheduledQueryExecutionRoleArn :: Value Text
scheduledQueryName :: Maybe (Value Text)
tags :: Maybe [Tag]
targetConfiguration :: Maybe TargetConfigurationProperty
..}
instance Property "NotificationConfiguration" ScheduledQuery where
type PropertyType "NotificationConfiguration" ScheduledQuery = NotificationConfigurationProperty
set :: PropertyType "NotificationConfiguration" ScheduledQuery
-> ScheduledQuery -> ScheduledQuery
set PropertyType "NotificationConfiguration" ScheduledQuery
newValue ScheduledQuery {Maybe [Tag]
Maybe (Value Text)
Maybe TargetConfigurationProperty
()
Value Text
ErrorReportConfigurationProperty
ScheduleConfigurationProperty
NotificationConfigurationProperty
haddock_workaround_ :: ScheduledQuery -> ()
clientToken :: ScheduledQuery -> Maybe (Value Text)
errorReportConfiguration :: ScheduledQuery -> ErrorReportConfigurationProperty
kmsKeyId :: ScheduledQuery -> Maybe (Value Text)
notificationConfiguration :: ScheduledQuery -> NotificationConfigurationProperty
queryString :: ScheduledQuery -> Value Text
scheduleConfiguration :: ScheduledQuery -> ScheduleConfigurationProperty
scheduledQueryExecutionRoleArn :: ScheduledQuery -> Value Text
scheduledQueryName :: ScheduledQuery -> Maybe (Value Text)
tags :: ScheduledQuery -> Maybe [Tag]
targetConfiguration :: ScheduledQuery -> Maybe TargetConfigurationProperty
haddock_workaround_ :: ()
clientToken :: Maybe (Value Text)
errorReportConfiguration :: ErrorReportConfigurationProperty
kmsKeyId :: Maybe (Value Text)
notificationConfiguration :: NotificationConfigurationProperty
queryString :: Value Text
scheduleConfiguration :: ScheduleConfigurationProperty
scheduledQueryExecutionRoleArn :: Value Text
scheduledQueryName :: Maybe (Value Text)
tags :: Maybe [Tag]
targetConfiguration :: Maybe TargetConfigurationProperty
..}
= ScheduledQuery {notificationConfiguration :: NotificationConfigurationProperty
notificationConfiguration = PropertyType "NotificationConfiguration" ScheduledQuery
NotificationConfigurationProperty
newValue, Maybe [Tag]
Maybe (Value Text)
Maybe TargetConfigurationProperty
()
Value Text
ErrorReportConfigurationProperty
ScheduleConfigurationProperty
haddock_workaround_ :: ()
clientToken :: Maybe (Value Text)
errorReportConfiguration :: ErrorReportConfigurationProperty
kmsKeyId :: Maybe (Value Text)
queryString :: Value Text
scheduleConfiguration :: ScheduleConfigurationProperty
scheduledQueryExecutionRoleArn :: Value Text
scheduledQueryName :: Maybe (Value Text)
tags :: Maybe [Tag]
targetConfiguration :: Maybe TargetConfigurationProperty
haddock_workaround_ :: ()
clientToken :: Maybe (Value Text)
errorReportConfiguration :: ErrorReportConfigurationProperty
kmsKeyId :: Maybe (Value Text)
queryString :: Value Text
scheduleConfiguration :: ScheduleConfigurationProperty
scheduledQueryExecutionRoleArn :: Value Text
scheduledQueryName :: Maybe (Value Text)
tags :: Maybe [Tag]
targetConfiguration :: Maybe TargetConfigurationProperty
..}
instance Property "QueryString" ScheduledQuery where
type PropertyType "QueryString" ScheduledQuery = Value Prelude.Text
set :: PropertyType "QueryString" ScheduledQuery
-> ScheduledQuery -> ScheduledQuery
set PropertyType "QueryString" ScheduledQuery
newValue ScheduledQuery {Maybe [Tag]
Maybe (Value Text)
Maybe TargetConfigurationProperty
()
Value Text
ErrorReportConfigurationProperty
ScheduleConfigurationProperty
NotificationConfigurationProperty
haddock_workaround_ :: ScheduledQuery -> ()
clientToken :: ScheduledQuery -> Maybe (Value Text)
errorReportConfiguration :: ScheduledQuery -> ErrorReportConfigurationProperty
kmsKeyId :: ScheduledQuery -> Maybe (Value Text)
notificationConfiguration :: ScheduledQuery -> NotificationConfigurationProperty
queryString :: ScheduledQuery -> Value Text
scheduleConfiguration :: ScheduledQuery -> ScheduleConfigurationProperty
scheduledQueryExecutionRoleArn :: ScheduledQuery -> Value Text
scheduledQueryName :: ScheduledQuery -> Maybe (Value Text)
tags :: ScheduledQuery -> Maybe [Tag]
targetConfiguration :: ScheduledQuery -> Maybe TargetConfigurationProperty
haddock_workaround_ :: ()
clientToken :: Maybe (Value Text)
errorReportConfiguration :: ErrorReportConfigurationProperty
kmsKeyId :: Maybe (Value Text)
notificationConfiguration :: NotificationConfigurationProperty
queryString :: Value Text
scheduleConfiguration :: ScheduleConfigurationProperty
scheduledQueryExecutionRoleArn :: Value Text
scheduledQueryName :: Maybe (Value Text)
tags :: Maybe [Tag]
targetConfiguration :: Maybe TargetConfigurationProperty
..}
= ScheduledQuery {queryString :: Value Text
queryString = PropertyType "QueryString" ScheduledQuery
Value Text
newValue, Maybe [Tag]
Maybe (Value Text)
Maybe TargetConfigurationProperty
()
Value Text
ErrorReportConfigurationProperty
ScheduleConfigurationProperty
NotificationConfigurationProperty
haddock_workaround_ :: ()
clientToken :: Maybe (Value Text)
errorReportConfiguration :: ErrorReportConfigurationProperty
kmsKeyId :: Maybe (Value Text)
notificationConfiguration :: NotificationConfigurationProperty
scheduleConfiguration :: ScheduleConfigurationProperty
scheduledQueryExecutionRoleArn :: Value Text
scheduledQueryName :: Maybe (Value Text)
tags :: Maybe [Tag]
targetConfiguration :: Maybe TargetConfigurationProperty
haddock_workaround_ :: ()
clientToken :: Maybe (Value Text)
errorReportConfiguration :: ErrorReportConfigurationProperty
kmsKeyId :: Maybe (Value Text)
notificationConfiguration :: NotificationConfigurationProperty
scheduleConfiguration :: ScheduleConfigurationProperty
scheduledQueryExecutionRoleArn :: Value Text
scheduledQueryName :: Maybe (Value Text)
tags :: Maybe [Tag]
targetConfiguration :: Maybe TargetConfigurationProperty
..}
instance Property "ScheduleConfiguration" ScheduledQuery where
type PropertyType "ScheduleConfiguration" ScheduledQuery = ScheduleConfigurationProperty
set :: PropertyType "ScheduleConfiguration" ScheduledQuery
-> ScheduledQuery -> ScheduledQuery
set PropertyType "ScheduleConfiguration" ScheduledQuery
newValue ScheduledQuery {Maybe [Tag]
Maybe (Value Text)
Maybe TargetConfigurationProperty
()
Value Text
ErrorReportConfigurationProperty
ScheduleConfigurationProperty
NotificationConfigurationProperty
haddock_workaround_ :: ScheduledQuery -> ()
clientToken :: ScheduledQuery -> Maybe (Value Text)
errorReportConfiguration :: ScheduledQuery -> ErrorReportConfigurationProperty
kmsKeyId :: ScheduledQuery -> Maybe (Value Text)
notificationConfiguration :: ScheduledQuery -> NotificationConfigurationProperty
queryString :: ScheduledQuery -> Value Text
scheduleConfiguration :: ScheduledQuery -> ScheduleConfigurationProperty
scheduledQueryExecutionRoleArn :: ScheduledQuery -> Value Text
scheduledQueryName :: ScheduledQuery -> Maybe (Value Text)
tags :: ScheduledQuery -> Maybe [Tag]
targetConfiguration :: ScheduledQuery -> Maybe TargetConfigurationProperty
haddock_workaround_ :: ()
clientToken :: Maybe (Value Text)
errorReportConfiguration :: ErrorReportConfigurationProperty
kmsKeyId :: Maybe (Value Text)
notificationConfiguration :: NotificationConfigurationProperty
queryString :: Value Text
scheduleConfiguration :: ScheduleConfigurationProperty
scheduledQueryExecutionRoleArn :: Value Text
scheduledQueryName :: Maybe (Value Text)
tags :: Maybe [Tag]
targetConfiguration :: Maybe TargetConfigurationProperty
..}
= ScheduledQuery {scheduleConfiguration :: ScheduleConfigurationProperty
scheduleConfiguration = PropertyType "ScheduleConfiguration" ScheduledQuery
ScheduleConfigurationProperty
newValue, Maybe [Tag]
Maybe (Value Text)
Maybe TargetConfigurationProperty
()
Value Text
ErrorReportConfigurationProperty
NotificationConfigurationProperty
haddock_workaround_ :: ()
clientToken :: Maybe (Value Text)
errorReportConfiguration :: ErrorReportConfigurationProperty
kmsKeyId :: Maybe (Value Text)
notificationConfiguration :: NotificationConfigurationProperty
queryString :: Value Text
scheduledQueryExecutionRoleArn :: Value Text
scheduledQueryName :: Maybe (Value Text)
tags :: Maybe [Tag]
targetConfiguration :: Maybe TargetConfigurationProperty
haddock_workaround_ :: ()
clientToken :: Maybe (Value Text)
errorReportConfiguration :: ErrorReportConfigurationProperty
kmsKeyId :: Maybe (Value Text)
notificationConfiguration :: NotificationConfigurationProperty
queryString :: Value Text
scheduledQueryExecutionRoleArn :: Value Text
scheduledQueryName :: Maybe (Value Text)
tags :: Maybe [Tag]
targetConfiguration :: Maybe TargetConfigurationProperty
..}
instance Property "ScheduledQueryExecutionRoleArn" ScheduledQuery where
type PropertyType "ScheduledQueryExecutionRoleArn" ScheduledQuery = Value Prelude.Text
set :: PropertyType "ScheduledQueryExecutionRoleArn" ScheduledQuery
-> ScheduledQuery -> ScheduledQuery
set PropertyType "ScheduledQueryExecutionRoleArn" ScheduledQuery
newValue ScheduledQuery {Maybe [Tag]
Maybe (Value Text)
Maybe TargetConfigurationProperty
()
Value Text
ErrorReportConfigurationProperty
ScheduleConfigurationProperty
NotificationConfigurationProperty
haddock_workaround_ :: ScheduledQuery -> ()
clientToken :: ScheduledQuery -> Maybe (Value Text)
errorReportConfiguration :: ScheduledQuery -> ErrorReportConfigurationProperty
kmsKeyId :: ScheduledQuery -> Maybe (Value Text)
notificationConfiguration :: ScheduledQuery -> NotificationConfigurationProperty
queryString :: ScheduledQuery -> Value Text
scheduleConfiguration :: ScheduledQuery -> ScheduleConfigurationProperty
scheduledQueryExecutionRoleArn :: ScheduledQuery -> Value Text
scheduledQueryName :: ScheduledQuery -> Maybe (Value Text)
tags :: ScheduledQuery -> Maybe [Tag]
targetConfiguration :: ScheduledQuery -> Maybe TargetConfigurationProperty
haddock_workaround_ :: ()
clientToken :: Maybe (Value Text)
errorReportConfiguration :: ErrorReportConfigurationProperty
kmsKeyId :: Maybe (Value Text)
notificationConfiguration :: NotificationConfigurationProperty
queryString :: Value Text
scheduleConfiguration :: ScheduleConfigurationProperty
scheduledQueryExecutionRoleArn :: Value Text
scheduledQueryName :: Maybe (Value Text)
tags :: Maybe [Tag]
targetConfiguration :: Maybe TargetConfigurationProperty
..}
= ScheduledQuery {scheduledQueryExecutionRoleArn :: Value Text
scheduledQueryExecutionRoleArn = PropertyType "ScheduledQueryExecutionRoleArn" ScheduledQuery
Value Text
newValue, Maybe [Tag]
Maybe (Value Text)
Maybe TargetConfigurationProperty
()
Value Text
ErrorReportConfigurationProperty
ScheduleConfigurationProperty
NotificationConfigurationProperty
haddock_workaround_ :: ()
clientToken :: Maybe (Value Text)
errorReportConfiguration :: ErrorReportConfigurationProperty
kmsKeyId :: Maybe (Value Text)
notificationConfiguration :: NotificationConfigurationProperty
queryString :: Value Text
scheduleConfiguration :: ScheduleConfigurationProperty
scheduledQueryName :: Maybe (Value Text)
tags :: Maybe [Tag]
targetConfiguration :: Maybe TargetConfigurationProperty
haddock_workaround_ :: ()
clientToken :: Maybe (Value Text)
errorReportConfiguration :: ErrorReportConfigurationProperty
kmsKeyId :: Maybe (Value Text)
notificationConfiguration :: NotificationConfigurationProperty
queryString :: Value Text
scheduleConfiguration :: ScheduleConfigurationProperty
scheduledQueryName :: Maybe (Value Text)
tags :: Maybe [Tag]
targetConfiguration :: Maybe TargetConfigurationProperty
..}
instance Property "ScheduledQueryName" ScheduledQuery where
type PropertyType "ScheduledQueryName" ScheduledQuery = Value Prelude.Text
set :: PropertyType "ScheduledQueryName" ScheduledQuery
-> ScheduledQuery -> ScheduledQuery
set PropertyType "ScheduledQueryName" ScheduledQuery
newValue ScheduledQuery {Maybe [Tag]
Maybe (Value Text)
Maybe TargetConfigurationProperty
()
Value Text
ErrorReportConfigurationProperty
ScheduleConfigurationProperty
NotificationConfigurationProperty
haddock_workaround_ :: ScheduledQuery -> ()
clientToken :: ScheduledQuery -> Maybe (Value Text)
errorReportConfiguration :: ScheduledQuery -> ErrorReportConfigurationProperty
kmsKeyId :: ScheduledQuery -> Maybe (Value Text)
notificationConfiguration :: ScheduledQuery -> NotificationConfigurationProperty
queryString :: ScheduledQuery -> Value Text
scheduleConfiguration :: ScheduledQuery -> ScheduleConfigurationProperty
scheduledQueryExecutionRoleArn :: ScheduledQuery -> Value Text
scheduledQueryName :: ScheduledQuery -> Maybe (Value Text)
tags :: ScheduledQuery -> Maybe [Tag]
targetConfiguration :: ScheduledQuery -> Maybe TargetConfigurationProperty
haddock_workaround_ :: ()
clientToken :: Maybe (Value Text)
errorReportConfiguration :: ErrorReportConfigurationProperty
kmsKeyId :: Maybe (Value Text)
notificationConfiguration :: NotificationConfigurationProperty
queryString :: Value Text
scheduleConfiguration :: ScheduleConfigurationProperty
scheduledQueryExecutionRoleArn :: Value Text
scheduledQueryName :: Maybe (Value Text)
tags :: Maybe [Tag]
targetConfiguration :: Maybe TargetConfigurationProperty
..}
= ScheduledQuery {scheduledQueryName :: Maybe (Value Text)
scheduledQueryName = Value Text -> Maybe (Value Text)
forall a. a -> Maybe a
forall (f :: * -> *) a. Applicative f => a -> f a
Prelude.pure PropertyType "ScheduledQueryName" ScheduledQuery
Value Text
newValue, Maybe [Tag]
Maybe (Value Text)
Maybe TargetConfigurationProperty
()
Value Text
ErrorReportConfigurationProperty
ScheduleConfigurationProperty
NotificationConfigurationProperty
haddock_workaround_ :: ()
clientToken :: Maybe (Value Text)
errorReportConfiguration :: ErrorReportConfigurationProperty
kmsKeyId :: Maybe (Value Text)
notificationConfiguration :: NotificationConfigurationProperty
queryString :: Value Text
scheduleConfiguration :: ScheduleConfigurationProperty
scheduledQueryExecutionRoleArn :: Value Text
tags :: Maybe [Tag]
targetConfiguration :: Maybe TargetConfigurationProperty
haddock_workaround_ :: ()
clientToken :: Maybe (Value Text)
errorReportConfiguration :: ErrorReportConfigurationProperty
kmsKeyId :: Maybe (Value Text)
notificationConfiguration :: NotificationConfigurationProperty
queryString :: Value Text
scheduleConfiguration :: ScheduleConfigurationProperty
scheduledQueryExecutionRoleArn :: Value Text
tags :: Maybe [Tag]
targetConfiguration :: Maybe TargetConfigurationProperty
..}
instance Property "Tags" ScheduledQuery where
type PropertyType "Tags" ScheduledQuery = [Tag]
set :: PropertyType "Tags" ScheduledQuery
-> ScheduledQuery -> ScheduledQuery
set PropertyType "Tags" ScheduledQuery
newValue ScheduledQuery {Maybe [Tag]
Maybe (Value Text)
Maybe TargetConfigurationProperty
()
Value Text
ErrorReportConfigurationProperty
ScheduleConfigurationProperty
NotificationConfigurationProperty
haddock_workaround_ :: ScheduledQuery -> ()
clientToken :: ScheduledQuery -> Maybe (Value Text)
errorReportConfiguration :: ScheduledQuery -> ErrorReportConfigurationProperty
kmsKeyId :: ScheduledQuery -> Maybe (Value Text)
notificationConfiguration :: ScheduledQuery -> NotificationConfigurationProperty
queryString :: ScheduledQuery -> Value Text
scheduleConfiguration :: ScheduledQuery -> ScheduleConfigurationProperty
scheduledQueryExecutionRoleArn :: ScheduledQuery -> Value Text
scheduledQueryName :: ScheduledQuery -> Maybe (Value Text)
tags :: ScheduledQuery -> Maybe [Tag]
targetConfiguration :: ScheduledQuery -> Maybe TargetConfigurationProperty
haddock_workaround_ :: ()
clientToken :: Maybe (Value Text)
errorReportConfiguration :: ErrorReportConfigurationProperty
kmsKeyId :: Maybe (Value Text)
notificationConfiguration :: NotificationConfigurationProperty
queryString :: Value Text
scheduleConfiguration :: ScheduleConfigurationProperty
scheduledQueryExecutionRoleArn :: Value Text
scheduledQueryName :: Maybe (Value Text)
tags :: Maybe [Tag]
targetConfiguration :: Maybe TargetConfigurationProperty
..}
= ScheduledQuery {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" ScheduledQuery
newValue, Maybe (Value Text)
Maybe TargetConfigurationProperty
()
Value Text
ErrorReportConfigurationProperty
ScheduleConfigurationProperty
NotificationConfigurationProperty
haddock_workaround_ :: ()
clientToken :: Maybe (Value Text)
errorReportConfiguration :: ErrorReportConfigurationProperty
kmsKeyId :: Maybe (Value Text)
notificationConfiguration :: NotificationConfigurationProperty
queryString :: Value Text
scheduleConfiguration :: ScheduleConfigurationProperty
scheduledQueryExecutionRoleArn :: Value Text
scheduledQueryName :: Maybe (Value Text)
targetConfiguration :: Maybe TargetConfigurationProperty
haddock_workaround_ :: ()
clientToken :: Maybe (Value Text)
errorReportConfiguration :: ErrorReportConfigurationProperty
kmsKeyId :: Maybe (Value Text)
notificationConfiguration :: NotificationConfigurationProperty
queryString :: Value Text
scheduleConfiguration :: ScheduleConfigurationProperty
scheduledQueryExecutionRoleArn :: Value Text
scheduledQueryName :: Maybe (Value Text)
targetConfiguration :: Maybe TargetConfigurationProperty
..}
instance Property "TargetConfiguration" ScheduledQuery where
type PropertyType "TargetConfiguration" ScheduledQuery = TargetConfigurationProperty
set :: PropertyType "TargetConfiguration" ScheduledQuery
-> ScheduledQuery -> ScheduledQuery
set PropertyType "TargetConfiguration" ScheduledQuery
newValue ScheduledQuery {Maybe [Tag]
Maybe (Value Text)
Maybe TargetConfigurationProperty
()
Value Text
ErrorReportConfigurationProperty
ScheduleConfigurationProperty
NotificationConfigurationProperty
haddock_workaround_ :: ScheduledQuery -> ()
clientToken :: ScheduledQuery -> Maybe (Value Text)
errorReportConfiguration :: ScheduledQuery -> ErrorReportConfigurationProperty
kmsKeyId :: ScheduledQuery -> Maybe (Value Text)
notificationConfiguration :: ScheduledQuery -> NotificationConfigurationProperty
queryString :: ScheduledQuery -> Value Text
scheduleConfiguration :: ScheduledQuery -> ScheduleConfigurationProperty
scheduledQueryExecutionRoleArn :: ScheduledQuery -> Value Text
scheduledQueryName :: ScheduledQuery -> Maybe (Value Text)
tags :: ScheduledQuery -> Maybe [Tag]
targetConfiguration :: ScheduledQuery -> Maybe TargetConfigurationProperty
haddock_workaround_ :: ()
clientToken :: Maybe (Value Text)
errorReportConfiguration :: ErrorReportConfigurationProperty
kmsKeyId :: Maybe (Value Text)
notificationConfiguration :: NotificationConfigurationProperty
queryString :: Value Text
scheduleConfiguration :: ScheduleConfigurationProperty
scheduledQueryExecutionRoleArn :: Value Text
scheduledQueryName :: Maybe (Value Text)
tags :: Maybe [Tag]
targetConfiguration :: Maybe TargetConfigurationProperty
..}
= ScheduledQuery {targetConfiguration :: Maybe TargetConfigurationProperty
targetConfiguration = TargetConfigurationProperty -> Maybe TargetConfigurationProperty
forall a. a -> Maybe a
forall (f :: * -> *) a. Applicative f => a -> f a
Prelude.pure PropertyType "TargetConfiguration" ScheduledQuery
TargetConfigurationProperty
newValue, Maybe [Tag]
Maybe (Value Text)
()
Value Text
ErrorReportConfigurationProperty
ScheduleConfigurationProperty
NotificationConfigurationProperty
haddock_workaround_ :: ()
clientToken :: Maybe (Value Text)
errorReportConfiguration :: ErrorReportConfigurationProperty
kmsKeyId :: Maybe (Value Text)
notificationConfiguration :: NotificationConfigurationProperty
queryString :: Value Text
scheduleConfiguration :: ScheduleConfigurationProperty
scheduledQueryExecutionRoleArn :: Value Text
scheduledQueryName :: Maybe (Value Text)
tags :: Maybe [Tag]
haddock_workaround_ :: ()
clientToken :: Maybe (Value Text)
errorReportConfiguration :: ErrorReportConfigurationProperty
kmsKeyId :: Maybe (Value Text)
notificationConfiguration :: NotificationConfigurationProperty
queryString :: Value Text
scheduleConfiguration :: ScheduleConfigurationProperty
scheduledQueryExecutionRoleArn :: Value Text
scheduledQueryName :: Maybe (Value Text)
tags :: Maybe [Tag]
..}