Skip to main content

app_assessment_compliance_drifts

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

Overview

Nameapp_assessment_compliance_drifts
TypeResource
Idaws.resiliencehub.app_assessment_compliance_drifts

Fields

The following fields are returned by SELECT queries:

NameDatatypeDescription
compliance_driftsarrayIndicates compliance drifts (recovery time objective (RTO) and recovery point objective (RPO)) detected for an assessed entity.
next_tokenstringNull, or the token from a previous call to get the next set of results. (pattern: <code>^\S{1,2000}$</code>)

Methods

The following methods are available for this resource:

NameAccessible byRequired ParamsOptional ParamsDescription
list_app_assessment_compliance_driftsselectregionList of compliance drifts that were detected while running an assessment.

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

List of compliance drifts that were detected while running an assessment.

SELECT
compliance_drifts,
next_token
FROM aws.resiliencehub.app_assessment_compliance_drifts
WHERE region = '{{ region }}' -- required
;