Class: Aws::MigrationHubStrategyRecommendations::Types::ManagementPreference

Inherits:
Struct
  • Object
show all
Defined in:
gems/aws-sdk-migrationhubstrategyrecommendations/lib/aws-sdk-migrationhubstrategyrecommendations/types.rb

Overview

Note:

ManagementPreference is a union - when making an API calls you must set exactly one of the members.

Note:

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.

Defined Under Namespace

Classes: AwsManagedResources, NoPreference, SelfManageResources, Unknown

Constant Summary collapse

SENSITIVE =
[]

Instance Attribute Summary collapse

Instance Attribute Details

#aws_managed_resourcesTypes::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 'gems/aws-sdk-migrationhubstrategyrecommendations/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_preferenceTypes::NoManagementPreference

No specific preference.



1567
1568
1569
1570
1571
1572
1573
1574
1575
1576
1577
1578
1579
1580
# File 'gems/aws-sdk-migrationhubstrategyrecommendations/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_resourcesTypes::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 'gems/aws-sdk-migrationhubstrategyrecommendations/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

#unknownObject

Returns the value of attribute unknown

Returns:

  • (Object)

    the current value of unknown



1567
1568
1569
# File 'gems/aws-sdk-migrationhubstrategyrecommendations/lib/aws-sdk-migrationhubstrategyrecommendations/types.rb', line 1567

def unknown
  @unknown
end