Skip to main content

app_component_recommendations

Creates, updates, deletes, gets or lists an app_component_recommendations resource.

Overview

Nameapp_component_recommendations
TypeResource
Idaws.resiliencehub.app_component_recommendations

Fields

The following fields are returned by SELECT queries:

NameDatatypeDescription
component_recommendationsarrayThe 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_tokenstringToken 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:

NameAccessible byRequired ParamsOptional ParamsDescription
list_app_component_recommendationsselectregionLists 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.

NameDatatypeDescription
regionstringAWS region (default: us-east-1)

SELECT examples

Lists the recommendations for an Resilience Hub Application Component.

SELECT
component_recommendations,
next_token
FROM aws.resiliencehub.app_component_recommendations
WHERE region = '{{ region }}' -- required
;