Skip to main content

architecture_recommendations

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

Overview

Namearchitecture_recommendations
TypeResource
Idaws.route53_recovery_readiness.architecture_recommendations

Fields

The following fields are returned by SELECT queries:

NameDatatypeDescription
last_audit_timestampstring (date-time)The time that a recovery group was last assessed for recommendations, in UTC ISO-8601 format.
next_tokenstringThe token that identifies which batch of results you want to see.
recommendationsarrayA list of the recommendations for the customer's application.

Methods

The following methods are available for this resource:

NameAccessible byRequired ParamsOptional ParamsDescription
get_architecture_recommendationsselectrecovery_group_name, regionmaxResults, nextTokenGets recommendations about architecture designs for improving resiliency for an application, based on a recovery group.

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
recovery_group_namestringThe name of a recovery group.
regionstringAWS region (default: us-east-1)
maxResultsintegerThe number of objects that you want to return with this call.
nextTokenstringThe token that identifies which batch of results you want to see.

SELECT examples

Gets recommendations about architecture designs for improving resiliency for an application, based on a recovery group.

SELECT
last_audit_timestamp,
next_token,
recommendations
FROM aws.route53_recovery_readiness.architecture_recommendations
WHERE recovery_group_name = '{{ recovery_group_name }}' -- required
AND region = '{{ region }}' -- required
AND maxResults = '{{ maxResults }}'
AND nextToken = '{{ nextToken }}'
;