app_component_recommendations
Creates, updates, deletes, gets or lists an app_component_recommendations resource.
Overview
| Name | app_component_recommendations |
| Type | Resource |
| Id | aws.resiliencehub.app_component_recommendations |
Fields
The following fields are returned by SELECT queries:
- list_app_component_recommendations
| Name | Datatype | Description |
|---|---|---|
component_recommendations | array | The recommendations for an Resilience Hub Application Component, returned as an object. This object contains the names of the Application Components, configuration recommendations, and recommendation statuses. |
next_token | string | Token for the next set of results, or null if there are no more results. (pattern: <code>^\S{1,2000}$</code>) |
Methods
The following methods are available for this resource:
| Name | Accessible by | Required Params | Optional Params | Description |
|---|---|---|---|---|
list_app_component_recommendations | select | region | Lists the recommendations for an Resilience Hub Application Component. |
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_app_component_recommendations
Lists the recommendations for an Resilience Hub Application Component.
SELECT
component_recommendations,
next_token
FROM aws.resiliencehub.app_component_recommendations
WHERE region = '{{ region }}' -- required
;