app_input_sources
Creates, updates, deletes, gets or lists an app_input_sources resource.
Overview
| Name | app_input_sources |
| Type | Resource |
| Id | aws.resiliencehub.app_input_sources |
Fields
The following fields are returned by SELECT queries:
- list_app_input_sources
| Name | Datatype | Description |
|---|---|---|
app_input_sources | array | The list of Resilience Hub application input sources. |
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_input_sources | select | region | Lists all the input sources of the Resilience Hub application. For more information about the input sources supported by Resilience Hub, see Discover the structure and describe your Resilience Hub application. | |
delete_app_input_source | delete | region | Deletes the input source and all of its imported resources from the Resilience Hub application. |
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_input_sources
Lists all the input sources of the Resilience Hub application. For more information about the input sources supported by Resilience Hub, see Discover the structure and describe your Resilience Hub application.
SELECT
app_input_sources,
next_token
FROM aws.resiliencehub.app_input_sources
WHERE region = '{{ region }}' -- required
;
DELETE examples
- delete_app_input_source
Deletes the input source and all of its imported resources from the Resilience Hub application.
DELETE FROM aws.resiliencehub.app_input_sources
WHERE region = '{{ region }}' --required
;