Hi there! Are you looking for the official Deno documentation? Try docs.deno.com for all your Deno learning needs.

StrategyOption

import type { StrategyOption } from "https://aws-api.deno.dev/v0.4/services/migrationhubstrategy.ts?docs=full";

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

interface StrategyOption {
isPreferred?: boolean | null;
strategy?: Strategy | null;
targetDestination?: TargetDestination | null;
toolName?: TransformationToolName | null;
}

§Properties

§
isPreferred?: boolean | null
[src]

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

§
strategy?: Strategy | null
[src]

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

§
targetDestination?: TargetDestination | null
[src]

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

§
toolName?: TransformationToolName | null
[src]

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