module Stratosphere.DMS.MigrationProject (
        module Exports, MigrationProject(..), mkMigrationProject
    ) where
import qualified Data.Aeson as JSON
import qualified Stratosphere.Prelude as Prelude
import Stratosphere.Property
import {-# SOURCE #-} Stratosphere.DMS.MigrationProject.DataProviderDescriptorProperty as Exports
import {-# SOURCE #-} Stratosphere.DMS.MigrationProject.SchemaConversionApplicationAttributesProperty as Exports
import Stratosphere.ResourceProperties
import Stratosphere.Tag
import Stratosphere.Value
data MigrationProject
  = -- | See: <http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-dms-migrationproject.html>
    MigrationProject {MigrationProject -> ()
haddock_workaround_ :: (),
                      -- | See: <http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-dms-migrationproject.html#cfn-dms-migrationproject-description>
                      MigrationProject -> Maybe (Value Text)
description :: (Prelude.Maybe (Value Prelude.Text)),
                      -- | See: <http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-dms-migrationproject.html#cfn-dms-migrationproject-instanceprofilearn>
                      MigrationProject -> Maybe (Value Text)
instanceProfileArn :: (Prelude.Maybe (Value Prelude.Text)),
                      -- | See: <http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-dms-migrationproject.html#cfn-dms-migrationproject-instanceprofileidentifier>
                      MigrationProject -> Maybe (Value Text)
instanceProfileIdentifier :: (Prelude.Maybe (Value Prelude.Text)),
                      -- | See: <http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-dms-migrationproject.html#cfn-dms-migrationproject-instanceprofilename>
                      MigrationProject -> Maybe (Value Text)
instanceProfileName :: (Prelude.Maybe (Value Prelude.Text)),
                      -- | See: <http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-dms-migrationproject.html#cfn-dms-migrationproject-migrationprojectidentifier>
                      MigrationProject -> Maybe (Value Text)
migrationProjectIdentifier :: (Prelude.Maybe (Value Prelude.Text)),
                      -- | See: <http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-dms-migrationproject.html#cfn-dms-migrationproject-migrationprojectname>
                      MigrationProject -> Maybe (Value Text)
migrationProjectName :: (Prelude.Maybe (Value Prelude.Text)),
                      -- | See: <http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-dms-migrationproject.html#cfn-dms-migrationproject-schemaconversionapplicationattributes>
                      MigrationProject
-> Maybe SchemaConversionApplicationAttributesProperty
schemaConversionApplicationAttributes :: (Prelude.Maybe SchemaConversionApplicationAttributesProperty),
                      -- | See: <http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-dms-migrationproject.html#cfn-dms-migrationproject-sourcedataproviderdescriptors>
                      MigrationProject -> Maybe [DataProviderDescriptorProperty]
sourceDataProviderDescriptors :: (Prelude.Maybe [DataProviderDescriptorProperty]),
                      -- | See: <http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-dms-migrationproject.html#cfn-dms-migrationproject-tags>
                      MigrationProject -> Maybe [Tag]
tags :: (Prelude.Maybe [Tag]),
                      -- | See: <http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-dms-migrationproject.html#cfn-dms-migrationproject-targetdataproviderdescriptors>
                      MigrationProject -> Maybe [DataProviderDescriptorProperty]
targetDataProviderDescriptors :: (Prelude.Maybe [DataProviderDescriptorProperty]),
                      -- | See: <http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-dms-migrationproject.html#cfn-dms-migrationproject-transformationrules>
                      MigrationProject -> Maybe (Value Text)
transformationRules :: (Prelude.Maybe (Value Prelude.Text))}
  deriving stock (MigrationProject -> MigrationProject -> Bool
(MigrationProject -> MigrationProject -> Bool)
-> (MigrationProject -> MigrationProject -> Bool)
-> Eq MigrationProject
forall a. (a -> a -> Bool) -> (a -> a -> Bool) -> Eq a
$c== :: MigrationProject -> MigrationProject -> Bool
== :: MigrationProject -> MigrationProject -> Bool
$c/= :: MigrationProject -> MigrationProject -> Bool
/= :: MigrationProject -> MigrationProject -> Bool
Prelude.Eq, Int -> MigrationProject -> ShowS
[MigrationProject] -> ShowS
MigrationProject -> String
(Int -> MigrationProject -> ShowS)
-> (MigrationProject -> String)
-> ([MigrationProject] -> ShowS)
-> Show MigrationProject
forall a.
(Int -> a -> ShowS) -> (a -> String) -> ([a] -> ShowS) -> Show a
$cshowsPrec :: Int -> MigrationProject -> ShowS
showsPrec :: Int -> MigrationProject -> ShowS
$cshow :: MigrationProject -> String
show :: MigrationProject -> String
$cshowList :: [MigrationProject] -> ShowS
showList :: [MigrationProject] -> ShowS
Prelude.Show)
mkMigrationProject :: MigrationProject
mkMigrationProject :: MigrationProject
mkMigrationProject
  = MigrationProject
      {haddock_workaround_ :: ()
haddock_workaround_ = (), description :: Maybe (Value Text)
description = Maybe (Value Text)
forall a. Maybe a
Prelude.Nothing,
       instanceProfileArn :: Maybe (Value Text)
instanceProfileArn = Maybe (Value Text)
forall a. Maybe a
Prelude.Nothing,
       instanceProfileIdentifier :: Maybe (Value Text)
instanceProfileIdentifier = Maybe (Value Text)
forall a. Maybe a
Prelude.Nothing,
       instanceProfileName :: Maybe (Value Text)
instanceProfileName = Maybe (Value Text)
forall a. Maybe a
Prelude.Nothing,
       migrationProjectIdentifier :: Maybe (Value Text)
migrationProjectIdentifier = Maybe (Value Text)
forall a. Maybe a
Prelude.Nothing,
       migrationProjectName :: Maybe (Value Text)
migrationProjectName = Maybe (Value Text)
forall a. Maybe a
Prelude.Nothing,
       schemaConversionApplicationAttributes :: Maybe SchemaConversionApplicationAttributesProperty
schemaConversionApplicationAttributes = Maybe SchemaConversionApplicationAttributesProperty
forall a. Maybe a
Prelude.Nothing,
       sourceDataProviderDescriptors :: Maybe [DataProviderDescriptorProperty]
sourceDataProviderDescriptors = Maybe [DataProviderDescriptorProperty]
forall a. Maybe a
Prelude.Nothing,
       tags :: Maybe [Tag]
tags = Maybe [Tag]
forall a. Maybe a
Prelude.Nothing,
       targetDataProviderDescriptors :: Maybe [DataProviderDescriptorProperty]
targetDataProviderDescriptors = Maybe [DataProviderDescriptorProperty]
forall a. Maybe a
Prelude.Nothing,
       transformationRules :: Maybe (Value Text)
transformationRules = Maybe (Value Text)
forall a. Maybe a
Prelude.Nothing}
instance ToResourceProperties MigrationProject where
  toResourceProperties :: MigrationProject -> ResourceProperties
toResourceProperties MigrationProject {Maybe [Tag]
Maybe [DataProviderDescriptorProperty]
Maybe (Value Text)
Maybe SchemaConversionApplicationAttributesProperty
()
haddock_workaround_ :: MigrationProject -> ()
description :: MigrationProject -> Maybe (Value Text)
instanceProfileArn :: MigrationProject -> Maybe (Value Text)
instanceProfileIdentifier :: MigrationProject -> Maybe (Value Text)
instanceProfileName :: MigrationProject -> Maybe (Value Text)
migrationProjectIdentifier :: MigrationProject -> Maybe (Value Text)
migrationProjectName :: MigrationProject -> Maybe (Value Text)
schemaConversionApplicationAttributes :: MigrationProject
-> Maybe SchemaConversionApplicationAttributesProperty
sourceDataProviderDescriptors :: MigrationProject -> Maybe [DataProviderDescriptorProperty]
tags :: MigrationProject -> Maybe [Tag]
targetDataProviderDescriptors :: MigrationProject -> Maybe [DataProviderDescriptorProperty]
transformationRules :: MigrationProject -> Maybe (Value Text)
haddock_workaround_ :: ()
description :: Maybe (Value Text)
instanceProfileArn :: Maybe (Value Text)
instanceProfileIdentifier :: Maybe (Value Text)
instanceProfileName :: Maybe (Value Text)
migrationProjectIdentifier :: Maybe (Value Text)
migrationProjectName :: Maybe (Value Text)
schemaConversionApplicationAttributes :: Maybe SchemaConversionApplicationAttributesProperty
sourceDataProviderDescriptors :: Maybe [DataProviderDescriptorProperty]
tags :: Maybe [Tag]
targetDataProviderDescriptors :: Maybe [DataProviderDescriptorProperty]
transformationRules :: Maybe (Value Text)
..}
    = ResourceProperties
        {awsType :: Text
awsType = Text
"AWS::DMS::MigrationProject",
         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
"Description" (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)
description,
                            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
"InstanceProfileArn" (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)
instanceProfileArn,
                            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
"InstanceProfileIdentifier"
                              (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)
instanceProfileIdentifier,
                            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
"InstanceProfileName" (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)
instanceProfileName,
                            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
"MigrationProjectIdentifier"
                              (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)
migrationProjectIdentifier,
                            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
"MigrationProjectName" (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)
migrationProjectName,
                            Key
-> SchemaConversionApplicationAttributesProperty -> (Key, Value)
forall v. ToJSON v => Key -> v -> (Key, Value)
forall e kv v. (KeyValue e kv, ToJSON v) => Key -> v -> kv
(JSON..=) Key
"SchemaConversionApplicationAttributes"
                              (SchemaConversionApplicationAttributesProperty -> (Key, Value))
-> Maybe SchemaConversionApplicationAttributesProperty
-> Maybe (Key, Value)
forall (f :: * -> *) a b. Functor f => (a -> b) -> f a -> f b
Prelude.<$> Maybe SchemaConversionApplicationAttributesProperty
schemaConversionApplicationAttributes,
                            Key -> [DataProviderDescriptorProperty] -> (Key, Value)
forall v. ToJSON v => Key -> v -> (Key, Value)
forall e kv v. (KeyValue e kv, ToJSON v) => Key -> v -> kv
(JSON..=) Key
"SourceDataProviderDescriptors"
                              ([DataProviderDescriptorProperty] -> (Key, Value))
-> Maybe [DataProviderDescriptorProperty] -> Maybe (Key, Value)
forall (f :: * -> *) a b. Functor f => (a -> b) -> f a -> f b
Prelude.<$> Maybe [DataProviderDescriptorProperty]
sourceDataProviderDescriptors,
                            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 -> [DataProviderDescriptorProperty] -> (Key, Value)
forall v. ToJSON v => Key -> v -> (Key, Value)
forall e kv v. (KeyValue e kv, ToJSON v) => Key -> v -> kv
(JSON..=) Key
"TargetDataProviderDescriptors"
                              ([DataProviderDescriptorProperty] -> (Key, Value))
-> Maybe [DataProviderDescriptorProperty] -> Maybe (Key, Value)
forall (f :: * -> *) a b. Functor f => (a -> b) -> f a -> f b
Prelude.<$> Maybe [DataProviderDescriptorProperty]
targetDataProviderDescriptors,
                            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
"TransformationRules" (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)
transformationRules])}
instance JSON.ToJSON MigrationProject where
  toJSON :: MigrationProject -> Value
toJSON MigrationProject {Maybe [Tag]
Maybe [DataProviderDescriptorProperty]
Maybe (Value Text)
Maybe SchemaConversionApplicationAttributesProperty
()
haddock_workaround_ :: MigrationProject -> ()
description :: MigrationProject -> Maybe (Value Text)
instanceProfileArn :: MigrationProject -> Maybe (Value Text)
instanceProfileIdentifier :: MigrationProject -> Maybe (Value Text)
instanceProfileName :: MigrationProject -> Maybe (Value Text)
migrationProjectIdentifier :: MigrationProject -> Maybe (Value Text)
migrationProjectName :: MigrationProject -> Maybe (Value Text)
schemaConversionApplicationAttributes :: MigrationProject
-> Maybe SchemaConversionApplicationAttributesProperty
sourceDataProviderDescriptors :: MigrationProject -> Maybe [DataProviderDescriptorProperty]
tags :: MigrationProject -> Maybe [Tag]
targetDataProviderDescriptors :: MigrationProject -> Maybe [DataProviderDescriptorProperty]
transformationRules :: MigrationProject -> Maybe (Value Text)
haddock_workaround_ :: ()
description :: Maybe (Value Text)
instanceProfileArn :: Maybe (Value Text)
instanceProfileIdentifier :: Maybe (Value Text)
instanceProfileName :: Maybe (Value Text)
migrationProjectIdentifier :: Maybe (Value Text)
migrationProjectName :: Maybe (Value Text)
schemaConversionApplicationAttributes :: Maybe SchemaConversionApplicationAttributesProperty
sourceDataProviderDescriptors :: Maybe [DataProviderDescriptorProperty]
tags :: Maybe [Tag]
targetDataProviderDescriptors :: Maybe [DataProviderDescriptorProperty]
transformationRules :: Maybe (Value Text)
..}
    = [(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
"Description" (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)
description,
               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
"InstanceProfileArn" (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)
instanceProfileArn,
               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
"InstanceProfileIdentifier"
                 (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)
instanceProfileIdentifier,
               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
"InstanceProfileName" (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)
instanceProfileName,
               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
"MigrationProjectIdentifier"
                 (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)
migrationProjectIdentifier,
               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
"MigrationProjectName" (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)
migrationProjectName,
               Key
-> SchemaConversionApplicationAttributesProperty -> (Key, Value)
forall v. ToJSON v => Key -> v -> (Key, Value)
forall e kv v. (KeyValue e kv, ToJSON v) => Key -> v -> kv
(JSON..=) Key
"SchemaConversionApplicationAttributes"
                 (SchemaConversionApplicationAttributesProperty -> (Key, Value))
-> Maybe SchemaConversionApplicationAttributesProperty
-> Maybe (Key, Value)
forall (f :: * -> *) a b. Functor f => (a -> b) -> f a -> f b
Prelude.<$> Maybe SchemaConversionApplicationAttributesProperty
schemaConversionApplicationAttributes,
               Key -> [DataProviderDescriptorProperty] -> (Key, Value)
forall v. ToJSON v => Key -> v -> (Key, Value)
forall e kv v. (KeyValue e kv, ToJSON v) => Key -> v -> kv
(JSON..=) Key
"SourceDataProviderDescriptors"
                 ([DataProviderDescriptorProperty] -> (Key, Value))
-> Maybe [DataProviderDescriptorProperty] -> Maybe (Key, Value)
forall (f :: * -> *) a b. Functor f => (a -> b) -> f a -> f b
Prelude.<$> Maybe [DataProviderDescriptorProperty]
sourceDataProviderDescriptors,
               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 -> [DataProviderDescriptorProperty] -> (Key, Value)
forall v. ToJSON v => Key -> v -> (Key, Value)
forall e kv v. (KeyValue e kv, ToJSON v) => Key -> v -> kv
(JSON..=) Key
"TargetDataProviderDescriptors"
                 ([DataProviderDescriptorProperty] -> (Key, Value))
-> Maybe [DataProviderDescriptorProperty] -> Maybe (Key, Value)
forall (f :: * -> *) a b. Functor f => (a -> b) -> f a -> f b
Prelude.<$> Maybe [DataProviderDescriptorProperty]
targetDataProviderDescriptors,
               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
"TransformationRules" (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)
transformationRules]))
instance Property "Description" MigrationProject where
  type PropertyType "Description" MigrationProject = Value Prelude.Text
  set :: PropertyType "Description" MigrationProject
-> MigrationProject -> MigrationProject
set PropertyType "Description" MigrationProject
newValue MigrationProject {Maybe [Tag]
Maybe [DataProviderDescriptorProperty]
Maybe (Value Text)
Maybe SchemaConversionApplicationAttributesProperty
()
haddock_workaround_ :: MigrationProject -> ()
description :: MigrationProject -> Maybe (Value Text)
instanceProfileArn :: MigrationProject -> Maybe (Value Text)
instanceProfileIdentifier :: MigrationProject -> Maybe (Value Text)
instanceProfileName :: MigrationProject -> Maybe (Value Text)
migrationProjectIdentifier :: MigrationProject -> Maybe (Value Text)
migrationProjectName :: MigrationProject -> Maybe (Value Text)
schemaConversionApplicationAttributes :: MigrationProject
-> Maybe SchemaConversionApplicationAttributesProperty
sourceDataProviderDescriptors :: MigrationProject -> Maybe [DataProviderDescriptorProperty]
tags :: MigrationProject -> Maybe [Tag]
targetDataProviderDescriptors :: MigrationProject -> Maybe [DataProviderDescriptorProperty]
transformationRules :: MigrationProject -> Maybe (Value Text)
haddock_workaround_ :: ()
description :: Maybe (Value Text)
instanceProfileArn :: Maybe (Value Text)
instanceProfileIdentifier :: Maybe (Value Text)
instanceProfileName :: Maybe (Value Text)
migrationProjectIdentifier :: Maybe (Value Text)
migrationProjectName :: Maybe (Value Text)
schemaConversionApplicationAttributes :: Maybe SchemaConversionApplicationAttributesProperty
sourceDataProviderDescriptors :: Maybe [DataProviderDescriptorProperty]
tags :: Maybe [Tag]
targetDataProviderDescriptors :: Maybe [DataProviderDescriptorProperty]
transformationRules :: Maybe (Value Text)
..}
    = MigrationProject {description :: Maybe (Value Text)
description = Value Text -> Maybe (Value Text)
forall a. a -> Maybe a
forall (f :: * -> *) a. Applicative f => a -> f a
Prelude.pure PropertyType "Description" MigrationProject
Value Text
newValue, Maybe [Tag]
Maybe [DataProviderDescriptorProperty]
Maybe (Value Text)
Maybe SchemaConversionApplicationAttributesProperty
()
haddock_workaround_ :: ()
instanceProfileArn :: Maybe (Value Text)
instanceProfileIdentifier :: Maybe (Value Text)
instanceProfileName :: Maybe (Value Text)
migrationProjectIdentifier :: Maybe (Value Text)
migrationProjectName :: Maybe (Value Text)
schemaConversionApplicationAttributes :: Maybe SchemaConversionApplicationAttributesProperty
sourceDataProviderDescriptors :: Maybe [DataProviderDescriptorProperty]
tags :: Maybe [Tag]
targetDataProviderDescriptors :: Maybe [DataProviderDescriptorProperty]
transformationRules :: Maybe (Value Text)
haddock_workaround_ :: ()
instanceProfileArn :: Maybe (Value Text)
instanceProfileIdentifier :: Maybe (Value Text)
instanceProfileName :: Maybe (Value Text)
migrationProjectIdentifier :: Maybe (Value Text)
migrationProjectName :: Maybe (Value Text)
schemaConversionApplicationAttributes :: Maybe SchemaConversionApplicationAttributesProperty
sourceDataProviderDescriptors :: Maybe [DataProviderDescriptorProperty]
tags :: Maybe [Tag]
targetDataProviderDescriptors :: Maybe [DataProviderDescriptorProperty]
transformationRules :: Maybe (Value Text)
..}
instance Property "InstanceProfileArn" MigrationProject where
  type PropertyType "InstanceProfileArn" MigrationProject = Value Prelude.Text
  set :: PropertyType "InstanceProfileArn" MigrationProject
-> MigrationProject -> MigrationProject
set PropertyType "InstanceProfileArn" MigrationProject
newValue MigrationProject {Maybe [Tag]
Maybe [DataProviderDescriptorProperty]
Maybe (Value Text)
Maybe SchemaConversionApplicationAttributesProperty
()
haddock_workaround_ :: MigrationProject -> ()
description :: MigrationProject -> Maybe (Value Text)
instanceProfileArn :: MigrationProject -> Maybe (Value Text)
instanceProfileIdentifier :: MigrationProject -> Maybe (Value Text)
instanceProfileName :: MigrationProject -> Maybe (Value Text)
migrationProjectIdentifier :: MigrationProject -> Maybe (Value Text)
migrationProjectName :: MigrationProject -> Maybe (Value Text)
schemaConversionApplicationAttributes :: MigrationProject
-> Maybe SchemaConversionApplicationAttributesProperty
sourceDataProviderDescriptors :: MigrationProject -> Maybe [DataProviderDescriptorProperty]
tags :: MigrationProject -> Maybe [Tag]
targetDataProviderDescriptors :: MigrationProject -> Maybe [DataProviderDescriptorProperty]
transformationRules :: MigrationProject -> Maybe (Value Text)
haddock_workaround_ :: ()
description :: Maybe (Value Text)
instanceProfileArn :: Maybe (Value Text)
instanceProfileIdentifier :: Maybe (Value Text)
instanceProfileName :: Maybe (Value Text)
migrationProjectIdentifier :: Maybe (Value Text)
migrationProjectName :: Maybe (Value Text)
schemaConversionApplicationAttributes :: Maybe SchemaConversionApplicationAttributesProperty
sourceDataProviderDescriptors :: Maybe [DataProviderDescriptorProperty]
tags :: Maybe [Tag]
targetDataProviderDescriptors :: Maybe [DataProviderDescriptorProperty]
transformationRules :: Maybe (Value Text)
..}
    = MigrationProject {instanceProfileArn :: Maybe (Value Text)
instanceProfileArn = Value Text -> Maybe (Value Text)
forall a. a -> Maybe a
forall (f :: * -> *) a. Applicative f => a -> f a
Prelude.pure PropertyType "InstanceProfileArn" MigrationProject
Value Text
newValue, Maybe [Tag]
Maybe [DataProviderDescriptorProperty]
Maybe (Value Text)
Maybe SchemaConversionApplicationAttributesProperty
()
haddock_workaround_ :: ()
description :: Maybe (Value Text)
instanceProfileIdentifier :: Maybe (Value Text)
instanceProfileName :: Maybe (Value Text)
migrationProjectIdentifier :: Maybe (Value Text)
migrationProjectName :: Maybe (Value Text)
schemaConversionApplicationAttributes :: Maybe SchemaConversionApplicationAttributesProperty
sourceDataProviderDescriptors :: Maybe [DataProviderDescriptorProperty]
tags :: Maybe [Tag]
targetDataProviderDescriptors :: Maybe [DataProviderDescriptorProperty]
transformationRules :: Maybe (Value Text)
haddock_workaround_ :: ()
description :: Maybe (Value Text)
instanceProfileIdentifier :: Maybe (Value Text)
instanceProfileName :: Maybe (Value Text)
migrationProjectIdentifier :: Maybe (Value Text)
migrationProjectName :: Maybe (Value Text)
schemaConversionApplicationAttributes :: Maybe SchemaConversionApplicationAttributesProperty
sourceDataProviderDescriptors :: Maybe [DataProviderDescriptorProperty]
tags :: Maybe [Tag]
targetDataProviderDescriptors :: Maybe [DataProviderDescriptorProperty]
transformationRules :: Maybe (Value Text)
..}
instance Property "InstanceProfileIdentifier" MigrationProject where
  type PropertyType "InstanceProfileIdentifier" MigrationProject = Value Prelude.Text
  set :: PropertyType "InstanceProfileIdentifier" MigrationProject
-> MigrationProject -> MigrationProject
set PropertyType "InstanceProfileIdentifier" MigrationProject
newValue MigrationProject {Maybe [Tag]
Maybe [DataProviderDescriptorProperty]
Maybe (Value Text)
Maybe SchemaConversionApplicationAttributesProperty
()
haddock_workaround_ :: MigrationProject -> ()
description :: MigrationProject -> Maybe (Value Text)
instanceProfileArn :: MigrationProject -> Maybe (Value Text)
instanceProfileIdentifier :: MigrationProject -> Maybe (Value Text)
instanceProfileName :: MigrationProject -> Maybe (Value Text)
migrationProjectIdentifier :: MigrationProject -> Maybe (Value Text)
migrationProjectName :: MigrationProject -> Maybe (Value Text)
schemaConversionApplicationAttributes :: MigrationProject
-> Maybe SchemaConversionApplicationAttributesProperty
sourceDataProviderDescriptors :: MigrationProject -> Maybe [DataProviderDescriptorProperty]
tags :: MigrationProject -> Maybe [Tag]
targetDataProviderDescriptors :: MigrationProject -> Maybe [DataProviderDescriptorProperty]
transformationRules :: MigrationProject -> Maybe (Value Text)
haddock_workaround_ :: ()
description :: Maybe (Value Text)
instanceProfileArn :: Maybe (Value Text)
instanceProfileIdentifier :: Maybe (Value Text)
instanceProfileName :: Maybe (Value Text)
migrationProjectIdentifier :: Maybe (Value Text)
migrationProjectName :: Maybe (Value Text)
schemaConversionApplicationAttributes :: Maybe SchemaConversionApplicationAttributesProperty
sourceDataProviderDescriptors :: Maybe [DataProviderDescriptorProperty]
tags :: Maybe [Tag]
targetDataProviderDescriptors :: Maybe [DataProviderDescriptorProperty]
transformationRules :: Maybe (Value Text)
..}
    = MigrationProject
        {instanceProfileIdentifier :: Maybe (Value Text)
instanceProfileIdentifier = Value Text -> Maybe (Value Text)
forall a. a -> Maybe a
forall (f :: * -> *) a. Applicative f => a -> f a
Prelude.pure PropertyType "InstanceProfileIdentifier" MigrationProject
Value Text
newValue, Maybe [Tag]
Maybe [DataProviderDescriptorProperty]
Maybe (Value Text)
Maybe SchemaConversionApplicationAttributesProperty
()
haddock_workaround_ :: ()
description :: Maybe (Value Text)
instanceProfileArn :: Maybe (Value Text)
instanceProfileName :: Maybe (Value Text)
migrationProjectIdentifier :: Maybe (Value Text)
migrationProjectName :: Maybe (Value Text)
schemaConversionApplicationAttributes :: Maybe SchemaConversionApplicationAttributesProperty
sourceDataProviderDescriptors :: Maybe [DataProviderDescriptorProperty]
tags :: Maybe [Tag]
targetDataProviderDescriptors :: Maybe [DataProviderDescriptorProperty]
transformationRules :: Maybe (Value Text)
haddock_workaround_ :: ()
description :: Maybe (Value Text)
instanceProfileArn :: Maybe (Value Text)
instanceProfileName :: Maybe (Value Text)
migrationProjectIdentifier :: Maybe (Value Text)
migrationProjectName :: Maybe (Value Text)
schemaConversionApplicationAttributes :: Maybe SchemaConversionApplicationAttributesProperty
sourceDataProviderDescriptors :: Maybe [DataProviderDescriptorProperty]
tags :: Maybe [Tag]
targetDataProviderDescriptors :: Maybe [DataProviderDescriptorProperty]
transformationRules :: Maybe (Value Text)
..}
instance Property "InstanceProfileName" MigrationProject where
  type PropertyType "InstanceProfileName" MigrationProject = Value Prelude.Text
  set :: PropertyType "InstanceProfileName" MigrationProject
-> MigrationProject -> MigrationProject
set PropertyType "InstanceProfileName" MigrationProject
newValue MigrationProject {Maybe [Tag]
Maybe [DataProviderDescriptorProperty]
Maybe (Value Text)
Maybe SchemaConversionApplicationAttributesProperty
()
haddock_workaround_ :: MigrationProject -> ()
description :: MigrationProject -> Maybe (Value Text)
instanceProfileArn :: MigrationProject -> Maybe (Value Text)
instanceProfileIdentifier :: MigrationProject -> Maybe (Value Text)
instanceProfileName :: MigrationProject -> Maybe (Value Text)
migrationProjectIdentifier :: MigrationProject -> Maybe (Value Text)
migrationProjectName :: MigrationProject -> Maybe (Value Text)
schemaConversionApplicationAttributes :: MigrationProject
-> Maybe SchemaConversionApplicationAttributesProperty
sourceDataProviderDescriptors :: MigrationProject -> Maybe [DataProviderDescriptorProperty]
tags :: MigrationProject -> Maybe [Tag]
targetDataProviderDescriptors :: MigrationProject -> Maybe [DataProviderDescriptorProperty]
transformationRules :: MigrationProject -> Maybe (Value Text)
haddock_workaround_ :: ()
description :: Maybe (Value Text)
instanceProfileArn :: Maybe (Value Text)
instanceProfileIdentifier :: Maybe (Value Text)
instanceProfileName :: Maybe (Value Text)
migrationProjectIdentifier :: Maybe (Value Text)
migrationProjectName :: Maybe (Value Text)
schemaConversionApplicationAttributes :: Maybe SchemaConversionApplicationAttributesProperty
sourceDataProviderDescriptors :: Maybe [DataProviderDescriptorProperty]
tags :: Maybe [Tag]
targetDataProviderDescriptors :: Maybe [DataProviderDescriptorProperty]
transformationRules :: Maybe (Value Text)
..}
    = MigrationProject
        {instanceProfileName :: Maybe (Value Text)
instanceProfileName = Value Text -> Maybe (Value Text)
forall a. a -> Maybe a
forall (f :: * -> *) a. Applicative f => a -> f a
Prelude.pure PropertyType "InstanceProfileName" MigrationProject
Value Text
newValue, Maybe [Tag]
Maybe [DataProviderDescriptorProperty]
Maybe (Value Text)
Maybe SchemaConversionApplicationAttributesProperty
()
haddock_workaround_ :: ()
description :: Maybe (Value Text)
instanceProfileArn :: Maybe (Value Text)
instanceProfileIdentifier :: Maybe (Value Text)
migrationProjectIdentifier :: Maybe (Value Text)
migrationProjectName :: Maybe (Value Text)
schemaConversionApplicationAttributes :: Maybe SchemaConversionApplicationAttributesProperty
sourceDataProviderDescriptors :: Maybe [DataProviderDescriptorProperty]
tags :: Maybe [Tag]
targetDataProviderDescriptors :: Maybe [DataProviderDescriptorProperty]
transformationRules :: Maybe (Value Text)
haddock_workaround_ :: ()
description :: Maybe (Value Text)
instanceProfileArn :: Maybe (Value Text)
instanceProfileIdentifier :: Maybe (Value Text)
migrationProjectIdentifier :: Maybe (Value Text)
migrationProjectName :: Maybe (Value Text)
schemaConversionApplicationAttributes :: Maybe SchemaConversionApplicationAttributesProperty
sourceDataProviderDescriptors :: Maybe [DataProviderDescriptorProperty]
tags :: Maybe [Tag]
targetDataProviderDescriptors :: Maybe [DataProviderDescriptorProperty]
transformationRules :: Maybe (Value Text)
..}
instance Property "MigrationProjectIdentifier" MigrationProject where
  type PropertyType "MigrationProjectIdentifier" MigrationProject = Value Prelude.Text
  set :: PropertyType "MigrationProjectIdentifier" MigrationProject
-> MigrationProject -> MigrationProject
set PropertyType "MigrationProjectIdentifier" MigrationProject
newValue MigrationProject {Maybe [Tag]
Maybe [DataProviderDescriptorProperty]
Maybe (Value Text)
Maybe SchemaConversionApplicationAttributesProperty
()
haddock_workaround_ :: MigrationProject -> ()
description :: MigrationProject -> Maybe (Value Text)
instanceProfileArn :: MigrationProject -> Maybe (Value Text)
instanceProfileIdentifier :: MigrationProject -> Maybe (Value Text)
instanceProfileName :: MigrationProject -> Maybe (Value Text)
migrationProjectIdentifier :: MigrationProject -> Maybe (Value Text)
migrationProjectName :: MigrationProject -> Maybe (Value Text)
schemaConversionApplicationAttributes :: MigrationProject
-> Maybe SchemaConversionApplicationAttributesProperty
sourceDataProviderDescriptors :: MigrationProject -> Maybe [DataProviderDescriptorProperty]
tags :: MigrationProject -> Maybe [Tag]
targetDataProviderDescriptors :: MigrationProject -> Maybe [DataProviderDescriptorProperty]
transformationRules :: MigrationProject -> Maybe (Value Text)
haddock_workaround_ :: ()
description :: Maybe (Value Text)
instanceProfileArn :: Maybe (Value Text)
instanceProfileIdentifier :: Maybe (Value Text)
instanceProfileName :: Maybe (Value Text)
migrationProjectIdentifier :: Maybe (Value Text)
migrationProjectName :: Maybe (Value Text)
schemaConversionApplicationAttributes :: Maybe SchemaConversionApplicationAttributesProperty
sourceDataProviderDescriptors :: Maybe [DataProviderDescriptorProperty]
tags :: Maybe [Tag]
targetDataProviderDescriptors :: Maybe [DataProviderDescriptorProperty]
transformationRules :: Maybe (Value Text)
..}
    = MigrationProject
        {migrationProjectIdentifier :: Maybe (Value Text)
migrationProjectIdentifier = Value Text -> Maybe (Value Text)
forall a. a -> Maybe a
forall (f :: * -> *) a. Applicative f => a -> f a
Prelude.pure PropertyType "MigrationProjectIdentifier" MigrationProject
Value Text
newValue, Maybe [Tag]
Maybe [DataProviderDescriptorProperty]
Maybe (Value Text)
Maybe SchemaConversionApplicationAttributesProperty
()
haddock_workaround_ :: ()
description :: Maybe (Value Text)
instanceProfileArn :: Maybe (Value Text)
instanceProfileIdentifier :: Maybe (Value Text)
instanceProfileName :: Maybe (Value Text)
migrationProjectName :: Maybe (Value Text)
schemaConversionApplicationAttributes :: Maybe SchemaConversionApplicationAttributesProperty
sourceDataProviderDescriptors :: Maybe [DataProviderDescriptorProperty]
tags :: Maybe [Tag]
targetDataProviderDescriptors :: Maybe [DataProviderDescriptorProperty]
transformationRules :: Maybe (Value Text)
haddock_workaround_ :: ()
description :: Maybe (Value Text)
instanceProfileArn :: Maybe (Value Text)
instanceProfileIdentifier :: Maybe (Value Text)
instanceProfileName :: Maybe (Value Text)
migrationProjectName :: Maybe (Value Text)
schemaConversionApplicationAttributes :: Maybe SchemaConversionApplicationAttributesProperty
sourceDataProviderDescriptors :: Maybe [DataProviderDescriptorProperty]
tags :: Maybe [Tag]
targetDataProviderDescriptors :: Maybe [DataProviderDescriptorProperty]
transformationRules :: Maybe (Value Text)
..}
instance Property "MigrationProjectName" MigrationProject where
  type PropertyType "MigrationProjectName" MigrationProject = Value Prelude.Text
  set :: PropertyType "MigrationProjectName" MigrationProject
-> MigrationProject -> MigrationProject
set PropertyType "MigrationProjectName" MigrationProject
newValue MigrationProject {Maybe [Tag]
Maybe [DataProviderDescriptorProperty]
Maybe (Value Text)
Maybe SchemaConversionApplicationAttributesProperty
()
haddock_workaround_ :: MigrationProject -> ()
description :: MigrationProject -> Maybe (Value Text)
instanceProfileArn :: MigrationProject -> Maybe (Value Text)
instanceProfileIdentifier :: MigrationProject -> Maybe (Value Text)
instanceProfileName :: MigrationProject -> Maybe (Value Text)
migrationProjectIdentifier :: MigrationProject -> Maybe (Value Text)
migrationProjectName :: MigrationProject -> Maybe (Value Text)
schemaConversionApplicationAttributes :: MigrationProject
-> Maybe SchemaConversionApplicationAttributesProperty
sourceDataProviderDescriptors :: MigrationProject -> Maybe [DataProviderDescriptorProperty]
tags :: MigrationProject -> Maybe [Tag]
targetDataProviderDescriptors :: MigrationProject -> Maybe [DataProviderDescriptorProperty]
transformationRules :: MigrationProject -> Maybe (Value Text)
haddock_workaround_ :: ()
description :: Maybe (Value Text)
instanceProfileArn :: Maybe (Value Text)
instanceProfileIdentifier :: Maybe (Value Text)
instanceProfileName :: Maybe (Value Text)
migrationProjectIdentifier :: Maybe (Value Text)
migrationProjectName :: Maybe (Value Text)
schemaConversionApplicationAttributes :: Maybe SchemaConversionApplicationAttributesProperty
sourceDataProviderDescriptors :: Maybe [DataProviderDescriptorProperty]
tags :: Maybe [Tag]
targetDataProviderDescriptors :: Maybe [DataProviderDescriptorProperty]
transformationRules :: Maybe (Value Text)
..}
    = MigrationProject
        {migrationProjectName :: Maybe (Value Text)
migrationProjectName = Value Text -> Maybe (Value Text)
forall a. a -> Maybe a
forall (f :: * -> *) a. Applicative f => a -> f a
Prelude.pure PropertyType "MigrationProjectName" MigrationProject
Value Text
newValue, Maybe [Tag]
Maybe [DataProviderDescriptorProperty]
Maybe (Value Text)
Maybe SchemaConversionApplicationAttributesProperty
()
haddock_workaround_ :: ()
description :: Maybe (Value Text)
instanceProfileArn :: Maybe (Value Text)
instanceProfileIdentifier :: Maybe (Value Text)
instanceProfileName :: Maybe (Value Text)
migrationProjectIdentifier :: Maybe (Value Text)
schemaConversionApplicationAttributes :: Maybe SchemaConversionApplicationAttributesProperty
sourceDataProviderDescriptors :: Maybe [DataProviderDescriptorProperty]
tags :: Maybe [Tag]
targetDataProviderDescriptors :: Maybe [DataProviderDescriptorProperty]
transformationRules :: Maybe (Value Text)
haddock_workaround_ :: ()
description :: Maybe (Value Text)
instanceProfileArn :: Maybe (Value Text)
instanceProfileIdentifier :: Maybe (Value Text)
instanceProfileName :: Maybe (Value Text)
migrationProjectIdentifier :: Maybe (Value Text)
schemaConversionApplicationAttributes :: Maybe SchemaConversionApplicationAttributesProperty
sourceDataProviderDescriptors :: Maybe [DataProviderDescriptorProperty]
tags :: Maybe [Tag]
targetDataProviderDescriptors :: Maybe [DataProviderDescriptorProperty]
transformationRules :: Maybe (Value Text)
..}
instance Property "SchemaConversionApplicationAttributes" MigrationProject where
  type PropertyType "SchemaConversionApplicationAttributes" MigrationProject = SchemaConversionApplicationAttributesProperty
  set :: PropertyType
  "SchemaConversionApplicationAttributes" MigrationProject
-> MigrationProject -> MigrationProject
set PropertyType
  "SchemaConversionApplicationAttributes" MigrationProject
newValue MigrationProject {Maybe [Tag]
Maybe [DataProviderDescriptorProperty]
Maybe (Value Text)
Maybe SchemaConversionApplicationAttributesProperty
()
haddock_workaround_ :: MigrationProject -> ()
description :: MigrationProject -> Maybe (Value Text)
instanceProfileArn :: MigrationProject -> Maybe (Value Text)
instanceProfileIdentifier :: MigrationProject -> Maybe (Value Text)
instanceProfileName :: MigrationProject -> Maybe (Value Text)
migrationProjectIdentifier :: MigrationProject -> Maybe (Value Text)
migrationProjectName :: MigrationProject -> Maybe (Value Text)
schemaConversionApplicationAttributes :: MigrationProject
-> Maybe SchemaConversionApplicationAttributesProperty
sourceDataProviderDescriptors :: MigrationProject -> Maybe [DataProviderDescriptorProperty]
tags :: MigrationProject -> Maybe [Tag]
targetDataProviderDescriptors :: MigrationProject -> Maybe [DataProviderDescriptorProperty]
transformationRules :: MigrationProject -> Maybe (Value Text)
haddock_workaround_ :: ()
description :: Maybe (Value Text)
instanceProfileArn :: Maybe (Value Text)
instanceProfileIdentifier :: Maybe (Value Text)
instanceProfileName :: Maybe (Value Text)
migrationProjectIdentifier :: Maybe (Value Text)
migrationProjectName :: Maybe (Value Text)
schemaConversionApplicationAttributes :: Maybe SchemaConversionApplicationAttributesProperty
sourceDataProviderDescriptors :: Maybe [DataProviderDescriptorProperty]
tags :: Maybe [Tag]
targetDataProviderDescriptors :: Maybe [DataProviderDescriptorProperty]
transformationRules :: Maybe (Value Text)
..}
    = MigrationProject
        {schemaConversionApplicationAttributes :: Maybe SchemaConversionApplicationAttributesProperty
schemaConversionApplicationAttributes = SchemaConversionApplicationAttributesProperty
-> Maybe SchemaConversionApplicationAttributesProperty
forall a. a -> Maybe a
forall (f :: * -> *) a. Applicative f => a -> f a
Prelude.pure PropertyType
  "SchemaConversionApplicationAttributes" MigrationProject
SchemaConversionApplicationAttributesProperty
newValue, Maybe [Tag]
Maybe [DataProviderDescriptorProperty]
Maybe (Value Text)
()
haddock_workaround_ :: ()
description :: Maybe (Value Text)
instanceProfileArn :: Maybe (Value Text)
instanceProfileIdentifier :: Maybe (Value Text)
instanceProfileName :: Maybe (Value Text)
migrationProjectIdentifier :: Maybe (Value Text)
migrationProjectName :: Maybe (Value Text)
sourceDataProviderDescriptors :: Maybe [DataProviderDescriptorProperty]
tags :: Maybe [Tag]
targetDataProviderDescriptors :: Maybe [DataProviderDescriptorProperty]
transformationRules :: Maybe (Value Text)
haddock_workaround_ :: ()
description :: Maybe (Value Text)
instanceProfileArn :: Maybe (Value Text)
instanceProfileIdentifier :: Maybe (Value Text)
instanceProfileName :: Maybe (Value Text)
migrationProjectIdentifier :: Maybe (Value Text)
migrationProjectName :: Maybe (Value Text)
sourceDataProviderDescriptors :: Maybe [DataProviderDescriptorProperty]
tags :: Maybe [Tag]
targetDataProviderDescriptors :: Maybe [DataProviderDescriptorProperty]
transformationRules :: Maybe (Value Text)
..}
instance Property "SourceDataProviderDescriptors" MigrationProject where
  type PropertyType "SourceDataProviderDescriptors" MigrationProject = [DataProviderDescriptorProperty]
  set :: PropertyType "SourceDataProviderDescriptors" MigrationProject
-> MigrationProject -> MigrationProject
set PropertyType "SourceDataProviderDescriptors" MigrationProject
newValue MigrationProject {Maybe [Tag]
Maybe [DataProviderDescriptorProperty]
Maybe (Value Text)
Maybe SchemaConversionApplicationAttributesProperty
()
haddock_workaround_ :: MigrationProject -> ()
description :: MigrationProject -> Maybe (Value Text)
instanceProfileArn :: MigrationProject -> Maybe (Value Text)
instanceProfileIdentifier :: MigrationProject -> Maybe (Value Text)
instanceProfileName :: MigrationProject -> Maybe (Value Text)
migrationProjectIdentifier :: MigrationProject -> Maybe (Value Text)
migrationProjectName :: MigrationProject -> Maybe (Value Text)
schemaConversionApplicationAttributes :: MigrationProject
-> Maybe SchemaConversionApplicationAttributesProperty
sourceDataProviderDescriptors :: MigrationProject -> Maybe [DataProviderDescriptorProperty]
tags :: MigrationProject -> Maybe [Tag]
targetDataProviderDescriptors :: MigrationProject -> Maybe [DataProviderDescriptorProperty]
transformationRules :: MigrationProject -> Maybe (Value Text)
haddock_workaround_ :: ()
description :: Maybe (Value Text)
instanceProfileArn :: Maybe (Value Text)
instanceProfileIdentifier :: Maybe (Value Text)
instanceProfileName :: Maybe (Value Text)
migrationProjectIdentifier :: Maybe (Value Text)
migrationProjectName :: Maybe (Value Text)
schemaConversionApplicationAttributes :: Maybe SchemaConversionApplicationAttributesProperty
sourceDataProviderDescriptors :: Maybe [DataProviderDescriptorProperty]
tags :: Maybe [Tag]
targetDataProviderDescriptors :: Maybe [DataProviderDescriptorProperty]
transformationRules :: Maybe (Value Text)
..}
    = MigrationProject
        {sourceDataProviderDescriptors :: Maybe [DataProviderDescriptorProperty]
sourceDataProviderDescriptors = [DataProviderDescriptorProperty]
-> Maybe [DataProviderDescriptorProperty]
forall a. a -> Maybe a
forall (f :: * -> *) a. Applicative f => a -> f a
Prelude.pure [DataProviderDescriptorProperty]
PropertyType "SourceDataProviderDescriptors" MigrationProject
newValue, Maybe [Tag]
Maybe [DataProviderDescriptorProperty]
Maybe (Value Text)
Maybe SchemaConversionApplicationAttributesProperty
()
haddock_workaround_ :: ()
description :: Maybe (Value Text)
instanceProfileArn :: Maybe (Value Text)
instanceProfileIdentifier :: Maybe (Value Text)
instanceProfileName :: Maybe (Value Text)
migrationProjectIdentifier :: Maybe (Value Text)
migrationProjectName :: Maybe (Value Text)
schemaConversionApplicationAttributes :: Maybe SchemaConversionApplicationAttributesProperty
tags :: Maybe [Tag]
targetDataProviderDescriptors :: Maybe [DataProviderDescriptorProperty]
transformationRules :: Maybe (Value Text)
haddock_workaround_ :: ()
description :: Maybe (Value Text)
instanceProfileArn :: Maybe (Value Text)
instanceProfileIdentifier :: Maybe (Value Text)
instanceProfileName :: Maybe (Value Text)
migrationProjectIdentifier :: Maybe (Value Text)
migrationProjectName :: Maybe (Value Text)
schemaConversionApplicationAttributes :: Maybe SchemaConversionApplicationAttributesProperty
tags :: Maybe [Tag]
targetDataProviderDescriptors :: Maybe [DataProviderDescriptorProperty]
transformationRules :: Maybe (Value Text)
..}
instance Property "Tags" MigrationProject where
  type PropertyType "Tags" MigrationProject = [Tag]
  set :: PropertyType "Tags" MigrationProject
-> MigrationProject -> MigrationProject
set PropertyType "Tags" MigrationProject
newValue MigrationProject {Maybe [Tag]
Maybe [DataProviderDescriptorProperty]
Maybe (Value Text)
Maybe SchemaConversionApplicationAttributesProperty
()
haddock_workaround_ :: MigrationProject -> ()
description :: MigrationProject -> Maybe (Value Text)
instanceProfileArn :: MigrationProject -> Maybe (Value Text)
instanceProfileIdentifier :: MigrationProject -> Maybe (Value Text)
instanceProfileName :: MigrationProject -> Maybe (Value Text)
migrationProjectIdentifier :: MigrationProject -> Maybe (Value Text)
migrationProjectName :: MigrationProject -> Maybe (Value Text)
schemaConversionApplicationAttributes :: MigrationProject
-> Maybe SchemaConversionApplicationAttributesProperty
sourceDataProviderDescriptors :: MigrationProject -> Maybe [DataProviderDescriptorProperty]
tags :: MigrationProject -> Maybe [Tag]
targetDataProviderDescriptors :: MigrationProject -> Maybe [DataProviderDescriptorProperty]
transformationRules :: MigrationProject -> Maybe (Value Text)
haddock_workaround_ :: ()
description :: Maybe (Value Text)
instanceProfileArn :: Maybe (Value Text)
instanceProfileIdentifier :: Maybe (Value Text)
instanceProfileName :: Maybe (Value Text)
migrationProjectIdentifier :: Maybe (Value Text)
migrationProjectName :: Maybe (Value Text)
schemaConversionApplicationAttributes :: Maybe SchemaConversionApplicationAttributesProperty
sourceDataProviderDescriptors :: Maybe [DataProviderDescriptorProperty]
tags :: Maybe [Tag]
targetDataProviderDescriptors :: Maybe [DataProviderDescriptorProperty]
transformationRules :: Maybe (Value Text)
..}
    = MigrationProject {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" MigrationProject
newValue, Maybe [DataProviderDescriptorProperty]
Maybe (Value Text)
Maybe SchemaConversionApplicationAttributesProperty
()
haddock_workaround_ :: ()
description :: Maybe (Value Text)
instanceProfileArn :: Maybe (Value Text)
instanceProfileIdentifier :: Maybe (Value Text)
instanceProfileName :: Maybe (Value Text)
migrationProjectIdentifier :: Maybe (Value Text)
migrationProjectName :: Maybe (Value Text)
schemaConversionApplicationAttributes :: Maybe SchemaConversionApplicationAttributesProperty
sourceDataProviderDescriptors :: Maybe [DataProviderDescriptorProperty]
targetDataProviderDescriptors :: Maybe [DataProviderDescriptorProperty]
transformationRules :: Maybe (Value Text)
haddock_workaround_ :: ()
description :: Maybe (Value Text)
instanceProfileArn :: Maybe (Value Text)
instanceProfileIdentifier :: Maybe (Value Text)
instanceProfileName :: Maybe (Value Text)
migrationProjectIdentifier :: Maybe (Value Text)
migrationProjectName :: Maybe (Value Text)
schemaConversionApplicationAttributes :: Maybe SchemaConversionApplicationAttributesProperty
sourceDataProviderDescriptors :: Maybe [DataProviderDescriptorProperty]
targetDataProviderDescriptors :: Maybe [DataProviderDescriptorProperty]
transformationRules :: Maybe (Value Text)
..}
instance Property "TargetDataProviderDescriptors" MigrationProject where
  type PropertyType "TargetDataProviderDescriptors" MigrationProject = [DataProviderDescriptorProperty]
  set :: PropertyType "TargetDataProviderDescriptors" MigrationProject
-> MigrationProject -> MigrationProject
set PropertyType "TargetDataProviderDescriptors" MigrationProject
newValue MigrationProject {Maybe [Tag]
Maybe [DataProviderDescriptorProperty]
Maybe (Value Text)
Maybe SchemaConversionApplicationAttributesProperty
()
haddock_workaround_ :: MigrationProject -> ()
description :: MigrationProject -> Maybe (Value Text)
instanceProfileArn :: MigrationProject -> Maybe (Value Text)
instanceProfileIdentifier :: MigrationProject -> Maybe (Value Text)
instanceProfileName :: MigrationProject -> Maybe (Value Text)
migrationProjectIdentifier :: MigrationProject -> Maybe (Value Text)
migrationProjectName :: MigrationProject -> Maybe (Value Text)
schemaConversionApplicationAttributes :: MigrationProject
-> Maybe SchemaConversionApplicationAttributesProperty
sourceDataProviderDescriptors :: MigrationProject -> Maybe [DataProviderDescriptorProperty]
tags :: MigrationProject -> Maybe [Tag]
targetDataProviderDescriptors :: MigrationProject -> Maybe [DataProviderDescriptorProperty]
transformationRules :: MigrationProject -> Maybe (Value Text)
haddock_workaround_ :: ()
description :: Maybe (Value Text)
instanceProfileArn :: Maybe (Value Text)
instanceProfileIdentifier :: Maybe (Value Text)
instanceProfileName :: Maybe (Value Text)
migrationProjectIdentifier :: Maybe (Value Text)
migrationProjectName :: Maybe (Value Text)
schemaConversionApplicationAttributes :: Maybe SchemaConversionApplicationAttributesProperty
sourceDataProviderDescriptors :: Maybe [DataProviderDescriptorProperty]
tags :: Maybe [Tag]
targetDataProviderDescriptors :: Maybe [DataProviderDescriptorProperty]
transformationRules :: Maybe (Value Text)
..}
    = MigrationProject
        {targetDataProviderDescriptors :: Maybe [DataProviderDescriptorProperty]
targetDataProviderDescriptors = [DataProviderDescriptorProperty]
-> Maybe [DataProviderDescriptorProperty]
forall a. a -> Maybe a
forall (f :: * -> *) a. Applicative f => a -> f a
Prelude.pure [DataProviderDescriptorProperty]
PropertyType "TargetDataProviderDescriptors" MigrationProject
newValue, Maybe [Tag]
Maybe [DataProviderDescriptorProperty]
Maybe (Value Text)
Maybe SchemaConversionApplicationAttributesProperty
()
haddock_workaround_ :: ()
description :: Maybe (Value Text)
instanceProfileArn :: Maybe (Value Text)
instanceProfileIdentifier :: Maybe (Value Text)
instanceProfileName :: Maybe (Value Text)
migrationProjectIdentifier :: Maybe (Value Text)
migrationProjectName :: Maybe (Value Text)
schemaConversionApplicationAttributes :: Maybe SchemaConversionApplicationAttributesProperty
sourceDataProviderDescriptors :: Maybe [DataProviderDescriptorProperty]
tags :: Maybe [Tag]
transformationRules :: Maybe (Value Text)
haddock_workaround_ :: ()
description :: Maybe (Value Text)
instanceProfileArn :: Maybe (Value Text)
instanceProfileIdentifier :: Maybe (Value Text)
instanceProfileName :: Maybe (Value Text)
migrationProjectIdentifier :: Maybe (Value Text)
migrationProjectName :: Maybe (Value Text)
schemaConversionApplicationAttributes :: Maybe SchemaConversionApplicationAttributesProperty
sourceDataProviderDescriptors :: Maybe [DataProviderDescriptorProperty]
tags :: Maybe [Tag]
transformationRules :: Maybe (Value Text)
..}
instance Property "TransformationRules" MigrationProject where
  type PropertyType "TransformationRules" MigrationProject = Value Prelude.Text
  set :: PropertyType "TransformationRules" MigrationProject
-> MigrationProject -> MigrationProject
set PropertyType "TransformationRules" MigrationProject
newValue MigrationProject {Maybe [Tag]
Maybe [DataProviderDescriptorProperty]
Maybe (Value Text)
Maybe SchemaConversionApplicationAttributesProperty
()
haddock_workaround_ :: MigrationProject -> ()
description :: MigrationProject -> Maybe (Value Text)
instanceProfileArn :: MigrationProject -> Maybe (Value Text)
instanceProfileIdentifier :: MigrationProject -> Maybe (Value Text)
instanceProfileName :: MigrationProject -> Maybe (Value Text)
migrationProjectIdentifier :: MigrationProject -> Maybe (Value Text)
migrationProjectName :: MigrationProject -> Maybe (Value Text)
schemaConversionApplicationAttributes :: MigrationProject
-> Maybe SchemaConversionApplicationAttributesProperty
sourceDataProviderDescriptors :: MigrationProject -> Maybe [DataProviderDescriptorProperty]
tags :: MigrationProject -> Maybe [Tag]
targetDataProviderDescriptors :: MigrationProject -> Maybe [DataProviderDescriptorProperty]
transformationRules :: MigrationProject -> Maybe (Value Text)
haddock_workaround_ :: ()
description :: Maybe (Value Text)
instanceProfileArn :: Maybe (Value Text)
instanceProfileIdentifier :: Maybe (Value Text)
instanceProfileName :: Maybe (Value Text)
migrationProjectIdentifier :: Maybe (Value Text)
migrationProjectName :: Maybe (Value Text)
schemaConversionApplicationAttributes :: Maybe SchemaConversionApplicationAttributesProperty
sourceDataProviderDescriptors :: Maybe [DataProviderDescriptorProperty]
tags :: Maybe [Tag]
targetDataProviderDescriptors :: Maybe [DataProviderDescriptorProperty]
transformationRules :: Maybe (Value Text)
..}
    = MigrationProject
        {transformationRules :: Maybe (Value Text)
transformationRules = Value Text -> Maybe (Value Text)
forall a. a -> Maybe a
forall (f :: * -> *) a. Applicative f => a -> f a
Prelude.pure PropertyType "TransformationRules" MigrationProject
Value Text
newValue, Maybe [Tag]
Maybe [DataProviderDescriptorProperty]
Maybe (Value Text)
Maybe SchemaConversionApplicationAttributesProperty
()
haddock_workaround_ :: ()
description :: Maybe (Value Text)
instanceProfileArn :: Maybe (Value Text)
instanceProfileIdentifier :: Maybe (Value Text)
instanceProfileName :: Maybe (Value Text)
migrationProjectIdentifier :: Maybe (Value Text)
migrationProjectName :: Maybe (Value Text)
schemaConversionApplicationAttributes :: Maybe SchemaConversionApplicationAttributesProperty
sourceDataProviderDescriptors :: Maybe [DataProviderDescriptorProperty]
tags :: Maybe [Tag]
targetDataProviderDescriptors :: Maybe [DataProviderDescriptorProperty]
haddock_workaround_ :: ()
description :: Maybe (Value Text)
instanceProfileArn :: Maybe (Value Text)
instanceProfileIdentifier :: Maybe (Value Text)
instanceProfileName :: Maybe (Value Text)
migrationProjectIdentifier :: Maybe (Value Text)
migrationProjectName :: Maybe (Value Text)
schemaConversionApplicationAttributes :: Maybe SchemaConversionApplicationAttributesProperty
sourceDataProviderDescriptors :: Maybe [DataProviderDescriptorProperty]
tags :: Maybe [Tag]
targetDataProviderDescriptors :: Maybe [DataProviderDescriptorProperty]
..}