Skip to main content

unsupported_app_version_resources

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

Overview

Nameunsupported_app_version_resources
TypeResource
Idaws.resiliencehub.unsupported_app_version_resources

Fields

The following fields are returned by SELECT queries:

NameDatatypeDescription
next_tokenstringToken for the next set of results, or null if there are no more results. (pattern: <code>^\S{1,2000}$</code>)
resolution_idstringThe identifier for a specific resolution.
unsupported_resourcesarrayThe unsupported resources for the application.

Methods

The following methods are available for this resource:

NameAccessible byRequired ParamsOptional ParamsDescription
list_unsupported_app_version_resourcesselectregionLists 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.

NameDatatypeDescription
regionstringAWS region (default: us-east-1)

SELECT examples

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
;