analyzable_servers
Creates, updates, deletes, gets or lists an analyzable_servers resource.
Overview
| Name | analyzable_servers |
| Type | Resource |
| Id | aws.migrationhubstrategy.analyzable_servers |
Fields
The following fields are returned by SELECT queries:
- list_analyzable_servers
| Name | Datatype | Description |
|---|---|---|
hostname | string | The host name of the analyzable server. (pattern: <code>.\S.</code>) |
ip_address | string | The ip address of the analyzable server. (pattern: <code>.\S.</code>) |
source | string | The data source of the analyzable server. (pattern: <code>.\S.</code>) |
vm_id | string | The virtual machine id of the analyzable server. (pattern: <code>.\S.</code>) |
Methods
The following methods are available for this resource:
| Name | Accessible by | Required Params | Optional Params | Description |
|---|---|---|---|---|
list_analyzable_servers | select | region | Retrieves a list of all the servers fetched from customer vCenter using Strategy Recommendation Collector. |
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.
| Name | Datatype | Description |
|---|---|---|
region | string | AWS region (default: us-east-1) |
SELECT examples
- list_analyzable_servers
Retrieves a list of all the servers fetched from customer vCenter using Strategy Recommendation Collector.
SELECT
hostname,
ip_address,
source,
vm_id
FROM aws.migrationhubstrategy.analyzable_servers
WHERE region = '{{ region }}' -- required
;