Skip to main content

app_component_compliances

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

Overview

Nameapp_component_compliances
TypeResource
Idaws.resiliencehub.app_component_compliances

Fields

The following fields are returned by SELECT queries:

NameDatatypeDescription
component_compliancesarrayThe compliances for an Resilience Hub Application Component, returned as an object. This object contains the names of the Application Components, compliances, costs, resiliency scores, outage scores, and more.
next_tokenstringToken for the next set of results, or null if there are no more results. (pattern: <code>^\S{1,2000}$</code>)

Methods

The following methods are available for this resource:

NameAccessible byRequired ParamsOptional ParamsDescription
list_app_component_compliancesselectregionLists the compliances for an Resilience Hub Application Component.

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

Lists the compliances for an Resilience Hub Application Component.

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