plan_evaluation_status
Creates, updates, deletes, gets or lists a plan_evaluation_status resource.
Overview
| Name | plan_evaluation_status |
| Type | Resource |
| Id | aws.arc_region_switch.plan_evaluation_status |
Fields
The following fields are returned by SELECT queries:
- get_plan_evaluation_status
| Name | Datatype | Description |
|---|---|---|
resource_arn | string | The Amazon Resource Name (ARN) of the resource. |
step_name | string | The name of the step for the resource warning. |
version | string | The version for the resource warning. |
warning_message | string | The warning message about what needs to be corrected. |
warning_status | string | The status of the resource warning. (active, resolved) |
warning_updated_time | string (date-time) | The timestamp when the warning was last updated. |
workflow | object | The workflow for the resource warning. |
Methods
The following methods are available for this resource:
| Name | Accessible by | Required Params | Optional Params | Description |
|---|---|---|---|---|
get_plan_evaluation_status | select | region | Retrieves the evaluation status of a Region switch plan. The evaluation status provides information about the last time the plan was evaluated and any warnings or issues detected. |
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
- get_plan_evaluation_status
Retrieves the evaluation status of a Region switch plan. The evaluation status provides information about the last time the plan was evaluated and any warnings or issues detected.
SELECT
resource_arn,
step_name,
version,
warning_message,
warning_status,
warning_updated_time,
workflow
FROM aws.arc_region_switch.plan_evaluation_status
WHERE region = '{{ region }}' -- required
;