Class: Aws::MigrationHubStrategyRecommendations::Types::ManagementPreference
- Inherits:
-
Struct
- Object
- Struct
- Aws::MigrationHubStrategyRecommendations::Types::ManagementPreference
- Defined in:
- gems/aws-sdk-migrationhubstrategyrecommendations/lib/aws-sdk-migrationhubstrategyrecommendations/types.rb
Overview
ManagementPreference is a union - when making an API calls you must set exactly one of the members.
ManagementPreference is a union - when returned from an API call exactly one value will be set and the returned type will be a subclass of ManagementPreference corresponding to the set member.
Preferences for migrating an application to AWS.
Direct Known Subclasses
AwsManagedResources, NoPreference, SelfManageResources, Unknown
Defined Under Namespace
Classes: AwsManagedResources, NoPreference, SelfManageResources, Unknown
Constant Summary collapse
- SENSITIVE =
[]
Instance Attribute Summary collapse
-
#aws_managed_resources ⇒ Types::AwsManagedResources
Indicates interest in solutions that are managed by AWS.
-
#no_preference ⇒ Types::NoManagementPreference
No specific preference.
-
#self_manage_resources ⇒ Types::SelfManageResources
Indicates interest in managing your own resources on AWS.
-
#unknown ⇒ Object
Returns the value of attribute unknown.
Instance Attribute Details
#aws_managed_resources ⇒ Types::AwsManagedResources
Indicates interest in solutions that are managed by AWS.
1394 1395 1396 1397 1398 1399 1400 1401 1402 1403 1404 1405 1406 1407 |
# File 'gems/aws-sdk-migrationhubstrategyrecommendations/lib/aws-sdk-migrationhubstrategyrecommendations/types.rb', line 1394 class ManagementPreference < Struct.new( :aws_managed_resources, :no_preference, :self_manage_resources, :unknown) SENSITIVE = [] include Aws::Structure include Aws::Structure::Union class AwsManagedResources < ManagementPreference; end class NoPreference < ManagementPreference; end class SelfManageResources < ManagementPreference; end class Unknown < ManagementPreference; end end |
#no_preference ⇒ Types::NoManagementPreference
No specific preference.
1394 1395 1396 1397 1398 1399 1400 1401 1402 1403 1404 1405 1406 1407 |
# File 'gems/aws-sdk-migrationhubstrategyrecommendations/lib/aws-sdk-migrationhubstrategyrecommendations/types.rb', line 1394 class ManagementPreference < Struct.new( :aws_managed_resources, :no_preference, :self_manage_resources, :unknown) SENSITIVE = [] include Aws::Structure include Aws::Structure::Union class AwsManagedResources < ManagementPreference; end class NoPreference < ManagementPreference; end class SelfManageResources < ManagementPreference; end class Unknown < ManagementPreference; end end |
#self_manage_resources ⇒ Types::SelfManageResources
Indicates interest in managing your own resources on AWS.
1394 1395 1396 1397 1398 1399 1400 1401 1402 1403 1404 1405 1406 1407 |
# File 'gems/aws-sdk-migrationhubstrategyrecommendations/lib/aws-sdk-migrationhubstrategyrecommendations/types.rb', line 1394 class ManagementPreference < Struct.new( :aws_managed_resources, :no_preference, :self_manage_resources, :unknown) SENSITIVE = [] include Aws::Structure include Aws::Structure::Union class AwsManagedResources < ManagementPreference; end class NoPreference < ManagementPreference; end class SelfManageResources < ManagementPreference; end class Unknown < ManagementPreference; end end |
#unknown ⇒ Object
Returns the value of attribute unknown
1394 1395 1396 |
# File 'gems/aws-sdk-migrationhubstrategyrecommendations/lib/aws-sdk-migrationhubstrategyrecommendations/types.rb', line 1394 def unknown @unknown end |