Skip to main content

plan_evaluation_status

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

Overview

Nameplan_evaluation_status
TypeResource
Idaws.arc_region_switch.plan_evaluation_status

Fields

The following fields are returned by SELECT queries:

NameDatatypeDescription
resource_arnstringThe Amazon Resource Name (ARN) of the resource.
step_namestringThe name of the step for the resource warning.
versionstringThe version for the resource warning.
warning_messagestringThe warning message about what needs to be corrected.
warning_statusstringThe status of the resource warning. (active, resolved)
warning_updated_timestring (date-time)The timestamp when the warning was last updated.
workflowobjectThe workflow for the resource warning.

Methods

The following methods are available for this resource:

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

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

SELECT examples

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
;