app_version_resources_resolution_status
Creates, updates, deletes, gets or lists an app_version_resources_resolution_status resource.
Overview
| Name | app_version_resources_resolution_status |
| Type | Resource |
| Id | aws.resiliencehub.app_version_resources_resolution_status |
Fields
The following fields are returned by SELECT queries:
- describe_app_version_resources_resolution_status
| Name | Datatype | Description |
|---|---|---|
app_arn | string | Amazon 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_version | string | The version of the application. (pattern: <code>^\S{1,50}$</code>) |
error_message | string | The returned error message for the request. |
resolution_id | string | The identifier for a specific resolution. |
status | string | Status of the action. (Pending, InProgress, Failed, Success) |
Methods
The following methods are available for this resource:
| Name | Accessible by | Required Params | Optional Params | Description |
|---|---|---|---|---|
describe_app_version_resources_resolution_status | select | region | Returns 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.
| Name | Datatype | Description |
|---|---|---|
region | string | AWS region (default: us-east-1) |
SELECT examples
- describe_app_version_resources_resolution_status
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
;