Skip to main content

application_dependencies

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

Overview

Nameapplication_dependencies
TypeResource
Idaws.serverlessrepo.application_dependencies

Fields

The following fields are returned by SELECT queries:

NameDatatypeDescription
application_idstringThe Amazon Resource Name (ARN) of the nested application.
semantic_versionstringThe semantic version of the nested application.

Methods

The following methods are available for this resource:

NameAccessible byRequired ParamsOptional ParamsDescription
list_application_dependenciesselectapplication_id, regionmaxItems, nextToken, semanticVersionRetrieves 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.

NameDatatypeDescription
application_idstringThe Amazon Resource Name (ARN) of the application.
regionstringAWS region (default: us-east-1)
maxItemsintegerThe total number of items to return.
nextTokenstringA token to specify where to start paginating.
semanticVersionstringThe semantic version of the application to get.

SELECT examples

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 }}'
;