application_dependencies
Creates, updates, deletes, gets or lists an application_dependencies resource.
Overview
| Name | application_dependencies |
| Type | Resource |
| Id | aws.serverlessrepo.application_dependencies |
Fields
The following fields are returned by SELECT queries:
- list_application_dependencies
| Name | Datatype | Description |
|---|---|---|
application_id | string | The Amazon Resource Name (ARN) of the nested application. |
semantic_version | string | The semantic version of the nested application. |
Methods
The following methods are available for this resource:
| Name | Accessible by | Required Params | Optional Params | Description |
|---|---|---|---|---|
list_application_dependencies | select | application_id, region | maxItems, nextToken, semanticVersion | Retrieves the list of applications nested in the containing 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 |
|---|---|---|
application_id | string | The Amazon Resource Name (ARN) of the application. |
region | string | AWS region (default: us-east-1) |
maxItems | integer | The total number of items to return. |
nextToken | string | A token to specify where to start paginating. |
semanticVersion | string | The semantic version of the application to get. |
SELECT examples
- list_application_dependencies
Retrieves the list of applications nested in the containing application.
SELECT
application_id,
semantic_version
FROM aws.serverlessrepo.application_dependencies
WHERE application_id = '{{ application_id }}' -- required
AND region = '{{ region }}' -- required
AND maxItems = '{{ maxItems }}'
AND nextToken = '{{ nextToken }}'
AND semanticVersion = '{{ semanticVersion }}'
;