amazonka-migrationhubstrategy-2.0: Amazon Migration Hub Strategy Recommendations SDK.
Copyright(c) 2013-2023 Brendan Hay
LicenseMozilla Public License, v. 2.0.
MaintainerBrendan Hay
Stabilityauto-generated
Portabilitynon-portable (GHC extensions)
Safe HaskellSafe-Inferred
LanguageHaskell2010

Amazonka.MigrationHubStrategy.Types.StrategyOption

Description

 
Synopsis

Documentation

data StrategyOption Source #

Information about all the available strategy options for migrating and modernizing an application component.

See: newStrategyOption smart constructor.

Constructors

StrategyOption' 

Fields

Instances

Instances details
ToJSON StrategyOption Source # 
Instance details

Defined in Amazonka.MigrationHubStrategy.Types.StrategyOption

Generic StrategyOption Source # 
Instance details

Defined in Amazonka.MigrationHubStrategy.Types.StrategyOption

Associated Types

type Rep StrategyOption :: Type -> Type #

Read StrategyOption Source # 
Instance details

Defined in Amazonka.MigrationHubStrategy.Types.StrategyOption

Show StrategyOption Source # 
Instance details

Defined in Amazonka.MigrationHubStrategy.Types.StrategyOption

NFData StrategyOption Source # 
Instance details

Defined in Amazonka.MigrationHubStrategy.Types.StrategyOption

Methods

rnf :: StrategyOption -> () #

Eq StrategyOption Source # 
Instance details

Defined in Amazonka.MigrationHubStrategy.Types.StrategyOption

Hashable StrategyOption Source # 
Instance details

Defined in Amazonka.MigrationHubStrategy.Types.StrategyOption

type Rep StrategyOption Source # 
Instance details

Defined in Amazonka.MigrationHubStrategy.Types.StrategyOption

type Rep StrategyOption = D1 ('MetaData "StrategyOption" "Amazonka.MigrationHubStrategy.Types.StrategyOption" "amazonka-migrationhubstrategy-2.0-mnEPazDQ9LCt8OMOo53lQ" 'False) (C1 ('MetaCons "StrategyOption'" 'PrefixI 'True) ((S1 ('MetaSel ('Just "isPreferred") 'NoSourceUnpackedness 'NoSourceStrictness 'DecidedStrict) (Rec0 (Maybe Bool)) :*: S1 ('MetaSel ('Just "strategy") 'NoSourceUnpackedness 'NoSourceStrictness 'DecidedStrict) (Rec0 (Maybe Strategy))) :*: (S1 ('MetaSel ('Just "targetDestination") 'NoSourceUnpackedness 'NoSourceStrictness 'DecidedStrict) (Rec0 (Maybe TargetDestination)) :*: S1 ('MetaSel ('Just "toolName") 'NoSourceUnpackedness 'NoSourceStrictness 'DecidedStrict) (Rec0 (Maybe TransformationToolName)))))

newStrategyOption :: StrategyOption Source #

Create a value of StrategyOption with all optional fields omitted.

Use generic-lens or optics to modify other optional fields.

The following record fields are available, with the corresponding lenses provided for backwards compatibility:

$sel:isPreferred:StrategyOption', strategyOption_isPreferred - Indicates if a specific strategy is preferred for the application component.

$sel:strategy:StrategyOption', strategyOption_strategy - Type of transformation. For example, Rehost, Replatform, and so on.

$sel:targetDestination:StrategyOption', strategyOption_targetDestination - Destination information about where the application component can migrate to. For example, EC2, ECS, and so on.

$sel:toolName:StrategyOption', strategyOption_toolName - The name of the tool that can be used to transform an application component using this strategy.

strategyOption_isPreferred :: Lens' StrategyOption (Maybe Bool) Source #

Indicates if a specific strategy is preferred for the application component.

strategyOption_strategy :: Lens' StrategyOption (Maybe Strategy) Source #

Type of transformation. For example, Rehost, Replatform, and so on.

strategyOption_targetDestination :: Lens' StrategyOption (Maybe TargetDestination) Source #

Destination information about where the application component can migrate to. For example, EC2, ECS, and so on.

strategyOption_toolName :: Lens' StrategyOption (Maybe TransformationToolName) Source #

The name of the tool that can be used to transform an application component using this strategy.