stratosphere-entityresolution-1.0.0: gen/Stratosphere/EntityResolution/MatchingWorkflow/IntermediateSourceConfigurationProperty.hs
module Stratosphere.EntityResolution.MatchingWorkflow.IntermediateSourceConfigurationProperty (
IntermediateSourceConfigurationProperty(..),
mkIntermediateSourceConfigurationProperty
) where
import qualified Data.Aeson as JSON
import qualified Stratosphere.Prelude as Prelude
import Stratosphere.Property
import Stratosphere.ResourceProperties
import Stratosphere.Value
data IntermediateSourceConfigurationProperty
= -- | See: <http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-entityresolution-matchingworkflow-intermediatesourceconfiguration.html>
IntermediateSourceConfigurationProperty {haddock_workaround_ :: (),
-- | See: <http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-entityresolution-matchingworkflow-intermediatesourceconfiguration.html#cfn-entityresolution-matchingworkflow-intermediatesourceconfiguration-intermediates3path>
intermediateS3Path :: (Value Prelude.Text)}
deriving stock (Prelude.Eq, Prelude.Show)
mkIntermediateSourceConfigurationProperty ::
Value Prelude.Text -> IntermediateSourceConfigurationProperty
mkIntermediateSourceConfigurationProperty intermediateS3Path
= IntermediateSourceConfigurationProperty
{haddock_workaround_ = (), intermediateS3Path = intermediateS3Path}
instance ToResourceProperties IntermediateSourceConfigurationProperty where
toResourceProperties IntermediateSourceConfigurationProperty {..}
= ResourceProperties
{awsType = "AWS::EntityResolution::MatchingWorkflow.IntermediateSourceConfiguration",
supportsTags = Prelude.False,
properties = ["IntermediateS3Path" JSON..= intermediateS3Path]}
instance JSON.ToJSON IntermediateSourceConfigurationProperty where
toJSON IntermediateSourceConfigurationProperty {..}
= JSON.object ["IntermediateS3Path" JSON..= intermediateS3Path]
instance Property "IntermediateS3Path" IntermediateSourceConfigurationProperty where
type PropertyType "IntermediateS3Path" IntermediateSourceConfigurationProperty = Value Prelude.Text
set newValue IntermediateSourceConfigurationProperty {..}
= IntermediateSourceConfigurationProperty
{intermediateS3Path = newValue, ..}