architecture_recommendations
Creates, updates, deletes, gets or lists an architecture_recommendations resource.
Overview
| Name | architecture_recommendations |
| Type | Resource |
| Id | aws.route53_recovery_readiness.architecture_recommendations |
Fields
The following fields are returned by SELECT queries:
- get_architecture_recommendations
| Name | Datatype | Description |
|---|---|---|
last_audit_timestamp | string (date-time) | The time that a recovery group was last assessed for recommendations, in UTC ISO-8601 format. |
next_token | string | The token that identifies which batch of results you want to see. |
recommendations | array | A list of the recommendations for the customer's application. |
Methods
The following methods are available for this resource:
| Name | Accessible by | Required Params | Optional Params | Description |
|---|---|---|---|---|
get_architecture_recommendations | select | recovery_group_name, region | maxResults, nextToken | Gets 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.
| Name | Datatype | Description |
|---|---|---|
recovery_group_name | string | The name of a recovery group. |
region | string | AWS region (default: us-east-1) |
maxResults | integer | The number of objects that you want to return with this call. |
nextToken | string | The token that identifies which batch of results you want to see. |
SELECT examples
- get_architecture_recommendations
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 }}'
;