Skip to main content

app_input_sources

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

Overview

Nameapp_input_sources
TypeResource
Idaws.resiliencehub.app_input_sources

Fields

The following fields are returned by SELECT queries:

NameDatatypeDescription
app_input_sourcesarrayThe list of Resilience Hub application input sources.
next_tokenstringToken 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:

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

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

SELECT examples

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

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
;