Class: Aws::MigrationHubStrategyRecommendations::Types::ManagementPreference
- Inherits:
-
Struct
- Object
- Struct
- Aws::MigrationHubStrategyRecommendations::Types::ManagementPreference
- Includes:
- Structure, Structure::Union
- Defined in:
- 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.
1567 1568 1569 1570 1571 1572 1573 1574 1575 1576 1577 1578 1579 1580 |
# File 'lib/aws-sdk-migrationhubstrategyrecommendations/types.rb', line 1567 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.
1567 1568 1569 1570 1571 1572 1573 1574 1575 1576 1577 1578 1579 1580 |
# File 'lib/aws-sdk-migrationhubstrategyrecommendations/types.rb', line 1567 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.
1567 1568 1569 1570 1571 1572 1573 1574 1575 1576 1577 1578 1579 1580 |
# File 'lib/aws-sdk-migrationhubstrategyrecommendations/types.rb', line 1567 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
1567 1568 1569 |
# File 'lib/aws-sdk-migrationhubstrategyrecommendations/types.rb', line 1567 def unknown @unknown end |