unsupported_app_version_resources
Creates, updates, deletes, gets or lists an unsupported_app_version_resources resource.
Overview
| Name | unsupported_app_version_resources |
| Type | Resource |
| Id | aws.resiliencehub.unsupported_app_version_resources |
Fields
The following fields are returned by SELECT queries:
- list_unsupported_app_version_resources
| Name | Datatype | Description |
|---|---|---|
next_token | string | Token for the next set of results, or null if there are no more results. (pattern: <code>^\S{1,2000}$</code>) |
resolution_id | string | The identifier for a specific resolution. |
unsupported_resources | array | The unsupported resources for the application. |
Methods
The following methods are available for this resource:
| Name | Accessible by | Required Params | Optional Params | Description |
|---|---|---|---|---|
list_unsupported_app_version_resources | select | region | Lists the resources that are not currently supported in Resilience Hub. An unsupported resource is a resource that exists in the object that was used to create an app, but is not supported by Resilience Hub. |
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_unsupported_app_version_resources
Lists the resources that are not currently supported in Resilience Hub. An unsupported resource is a resource that exists in the object that was used to create an app, but is not supported by Resilience Hub.
SELECT
next_token,
resolution_id,
unsupported_resources
FROM aws.resiliencehub.unsupported_app_version_resources
WHERE region = '{{ region }}' -- required
;