module Stratosphere.Timestream.ScheduledQuery.SnsConfigurationProperty ( SnsConfigurationProperty(..), mkSnsConfigurationProperty ) where import qualified Data.Aeson as JSON import qualified Stratosphere.Prelude as Prelude import Stratosphere.Property import Stratosphere.ResourceProperties import Stratosphere.Value data SnsConfigurationProperty = -- | See: SnsConfigurationProperty {haddock_workaround_ :: (), -- | See: topicArn :: (Value Prelude.Text)} deriving stock (Prelude.Eq, Prelude.Show) mkSnsConfigurationProperty :: Value Prelude.Text -> SnsConfigurationProperty mkSnsConfigurationProperty topicArn = SnsConfigurationProperty {haddock_workaround_ = (), topicArn = topicArn} instance ToResourceProperties SnsConfigurationProperty where toResourceProperties SnsConfigurationProperty {..} = ResourceProperties {awsType = "AWS::Timestream::ScheduledQuery.SnsConfiguration", supportsTags = Prelude.False, properties = ["TopicArn" JSON..= topicArn]} instance JSON.ToJSON SnsConfigurationProperty where toJSON SnsConfigurationProperty {..} = JSON.object ["TopicArn" JSON..= topicArn] instance Property "TopicArn" SnsConfigurationProperty where type PropertyType "TopicArn" SnsConfigurationProperty = Value Prelude.Text set newValue SnsConfigurationProperty {..} = SnsConfigurationProperty {topicArn = newValue, ..}