app_component_compliances
Creates, updates, deletes, gets or lists an app_component_compliances resource.
Overview
| Name | app_component_compliances |
| Type | Resource |
| Id | aws.resiliencehub.app_component_compliances |
Fields
The following fields are returned by SELECT queries:
- list_app_component_compliances
| Name | Datatype | Description |
|---|---|---|
component_compliances | array | The 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_token | string | Token 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:
| Name | Accessible by | Required Params | Optional Params | Description |
|---|---|---|---|---|
list_app_component_compliances | select | region | Lists 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.
| Name | Datatype | Description |
|---|---|---|
region | string | AWS region (default: us-east-1) |
SELECT examples
- list_app_component_compliances
Lists the compliances for an Resilience Hub Application Component.
SELECT
component_compliances,
next_token
FROM aws.resiliencehub.app_component_compliances
WHERE region = '{{ region }}' -- required
;