application_component_strategies
Creates, updates, deletes, gets or lists an application_component_strategies resource.
Overview
| Name | application_component_strategies |
| Type | Resource |
| Id | aws.migrationhubstrategy.application_component_strategies |
Fields
The following fields are returned by SELECT queries:
- get_application_component_strategies
| Name | Datatype | Description |
|---|---|---|
application_component_strategies | array | A list of application component strategy recommendations. |
Methods
The following methods are available for this resource:
| Name | Accessible by | Required Params | Optional Params | Description |
|---|---|---|---|---|
get_application_component_strategies | select | application_component_id, region | Retrieves a list of all the recommended strategies and tools for an application component running on a 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.
| Name | Datatype | Description |
|---|---|---|
application_component_id | string | The ID of the application component. The ID is unique within an AWS account. |
region | string | AWS region (default: us-east-1) |
SELECT examples
- get_application_component_strategies
Retrieves a list of all the recommended strategies and tools for an application component running on a server.
SELECT
application_component_strategies
FROM aws.migrationhubstrategy.application_component_strategies
WHERE application_component_id = '{{ application_component_id }}' -- required
AND region = '{{ region }}' -- required
;