Method: Aws::MigrationHubStrategyRecommendations::Types::DatabaseMigrationPreference#homogeneous
- Defined in:
- lib/aws-sdk-migrationhubstrategyrecommendations/types.rb
#homogeneous ⇒ Types::Homogeneous
Indicates whether you are interested in moving to the same type of database into AWS. For example, from SQL Server in your environment to SQL Server on AWS.
729 730 731 732 733 734 735 736 737 738 739 740 741 742 |
# File 'lib/aws-sdk-migrationhubstrategyrecommendations/types.rb', line 729 class DatabaseMigrationPreference < Struct.new( :heterogeneous, :homogeneous, :no_preference, :unknown) SENSITIVE = [] include Aws::Structure include Aws::Structure::Union class Heterogeneous < DatabaseMigrationPreference; end class Homogeneous < DatabaseMigrationPreference; end class NoPreference < DatabaseMigrationPreference; end class Unknown < DatabaseMigrationPreference; end end |