Skip to main content

sop_recommendations

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

Overview

Namesop_recommendations
TypeResource
Idaws.resiliencehub.sop_recommendations

Fields

The following fields are returned by SELECT queries:

NameDatatypeDescription
next_tokenstringToken for the next set of results, or null if there are no more results. (pattern: <code>^\S{1,2000}$</code>)
sop_recommendationsarrayThe standard operating procedure (SOP) recommendations for the Resilience Hub applications.

Methods

The following methods are available for this resource:

NameAccessible byRequired ParamsOptional ParamsDescription
list_sop_recommendationsselectregionLists the standard operating procedure (SOP) recommendations for the Resilience Hub applications.

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 standard operating procedure (SOP) recommendations for the Resilience Hub applications.

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