List Application Dependencies
serverlessapplicationrepository_list_application_dependencies | R Documentation |
Retrieves the list of applications nested in the containing application¶
Description¶
Retrieves the list of applications nested in the containing application.
Usage¶
serverlessapplicationrepository_list_application_dependencies(
ApplicationId, MaxItems, NextToken, SemanticVersion)
Arguments¶
ApplicationId |
[required] The Amazon Resource Name (ARN) of the application. |
MaxItems |
The total number of items to return. |
NextToken |
A token to specify where to start paginating. |
SemanticVersion |
The semantic version of the application to get. |
Value¶
A list with the following syntax:
list(
Dependencies = list(
list(
ApplicationId = "string",
SemanticVersion = "string"
)
),
NextToken = "string"
)
Request syntax¶
svc$list_application_dependencies(
ApplicationId = "string",
MaxItems = 123,
NextToken = "string",
SemanticVersion = "string"
)