Skip to main content

resource_evaluations

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

Overview

Nameresource_evaluations
TypeResource
Idaws.config.resource_evaluations

Fields

The following fields are returned by SELECT queries:

NameDatatypeDescription
evaluation_modestringThe mode of an evaluation. The valid values are Detective or Proactive. (DETECTIVE, PROACTIVE)
evaluation_start_timestampstring (date-time)The starting time of an execution.
resource_evaluation_idstringThe ResourceEvaluationId of a evaluation.

Methods

The following methods are available for this resource:

NameAccessible byRequired ParamsOptional ParamsDescription
list_resource_evaluationsselectregionReturns a list of proactive resource evaluations.

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

Returns a list of proactive resource evaluations.

SELECT
evaluation_mode,
evaluation_start_timestamp,
resource_evaluation_id
FROM aws.config.resource_evaluations
WHERE region = '{{ region }}' -- required
;