module Stratosphere.SSMIncidents.ResponsePlan.IntegrationProperty ( module Exports, IntegrationProperty(..), mkIntegrationProperty ) where import qualified Data.Aeson as JSON import qualified Stratosphere.Prelude as Prelude import Stratosphere.Property import {-# SOURCE #-} Stratosphere.SSMIncidents.ResponsePlan.PagerDutyConfigurationProperty as Exports import Stratosphere.ResourceProperties data IntegrationProperty = -- | See: IntegrationProperty {haddock_workaround_ :: (), -- | See: pagerDutyConfiguration :: PagerDutyConfigurationProperty} deriving stock (Prelude.Eq, Prelude.Show) mkIntegrationProperty :: PagerDutyConfigurationProperty -> IntegrationProperty mkIntegrationProperty pagerDutyConfiguration = IntegrationProperty {haddock_workaround_ = (), pagerDutyConfiguration = pagerDutyConfiguration} instance ToResourceProperties IntegrationProperty where toResourceProperties IntegrationProperty {..} = ResourceProperties {awsType = "AWS::SSMIncidents::ResponsePlan.Integration", supportsTags = Prelude.False, properties = ["PagerDutyConfiguration" JSON..= pagerDutyConfiguration]} instance JSON.ToJSON IntegrationProperty where toJSON IntegrationProperty {..} = JSON.object ["PagerDutyConfiguration" JSON..= pagerDutyConfiguration] instance Property "PagerDutyConfiguration" IntegrationProperty where type PropertyType "PagerDutyConfiguration" IntegrationProperty = PagerDutyConfigurationProperty set newValue IntegrationProperty {..} = IntegrationProperty {pagerDutyConfiguration = newValue, ..}