Skip to main content

server_strategies

Creates, updates, deletes, gets or lists a server_strategies resource.

Overview

Nameserver_strategies
TypeResource
Idaws.migrationhubstrategy.server_strategies

Fields

The following fields are returned by SELECT queries:

NameDatatypeDescription
server_strategiesarrayA list of strategy recommendations for the server.

Methods

The following methods are available for this resource:

NameAccessible byRequired ParamsOptional ParamsDescription
get_server_strategiesselectserver_id, regionRetrieves recommended strategies and tools for the specified server.

Parameters

Parameters can be passed in the WHERE clause of a query. Check the Methods section to see which parameters are required or optional for each operation.

NameDatatypeDescription
regionstringAWS region (default: us-east-1)
server_idstringThe ID of the server.

SELECT examples

Retrieves recommended strategies and tools for the specified server.

SELECT
server_strategies
FROM aws.migrationhubstrategy.server_strategies
WHERE server_id = '{{ server_id }}' -- required
AND region = '{{ region }}' -- required
;