Skip to main content

app_version_resources_resolution_status

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

Overview

Nameapp_version_resources_resolution_status
TypeResource
Idaws.resiliencehub.app_version_resources_resolution_status

Fields

The following fields are returned by SELECT queries:

NameDatatypeDescription
app_arnstringAmazon Resource Name (ARN) of the Resilience Hub application. The format for this ARN is: arn:partition:resiliencehub:region:account:app/app-id. For more information about ARNs, see Amazon Resource Names (ARNs) in the Amazon Web Services General Reference guide. (pattern: <code>^arn:(aws|aws-cn|aws-iso|aws-iso-[a-z]{1}|aws-us-gov):[A-Za-z0-9][A-Za-z0-9_/.-]{0,62}:([a-z]{2}-((iso[a-z]{0,1}-)|(gov-)){0,1}[a-z]+-[0-9]):[0-9]{12}:[A-Za-z0-9/][A-Za-z0-9:_/+.-]{0,1023}$</code>)
app_versionstringThe version of the application. (pattern: <code>^\S{1,50}$</code>)
error_messagestringThe returned error message for the request.
resolution_idstringThe identifier for a specific resolution.
statusstringStatus of the action. (Pending, InProgress, Failed, Success)

Methods

The following methods are available for this resource:

NameAccessible byRequired ParamsOptional ParamsDescription
describe_app_version_resources_resolution_statusselectregionReturns the resolution status for the specified resolution identifier for an application version. If resolutionId is not specified, the current resolution status is returned.

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

Returns the resolution status for the specified resolution identifier for an application version. If resolutionId is not specified, the current resolution status is returned.

SELECT
app_arn,
app_version,
error_message,
resolution_id,
status
FROM aws.resiliencehub.app_version_resources_resolution_status
WHERE region = '{{ region }}' -- required
;