AWSServerlessApplicationRepository

2018/11/29 - AWSServerlessApplicationRepository - 1 new api methods

Changes  AWS Serverless Application Repository now supports nested applications. You can nest individual applications as components of a larger application to make it easy to assemble and deploy new serverless architectures.

ListApplicationDependencies (new) Link ΒΆ

Retrieves the list of applications nested in the containing application.

See also: AWS API Documentation

Request Syntax

client.list_application_dependencies(
    ApplicationId='string',
    MaxItems=123,
    NextToken='string',
    SemanticVersion='string'
)
type ApplicationId

string

param ApplicationId

[REQUIRED]

The Amazon Resource Name (ARN) of the application.

type MaxItems

integer

param MaxItems

The total number of items to return.

type NextToken

string

param NextToken

A token to specify where to start paginating.

type SemanticVersion

string

param SemanticVersion

The semantic version of the application to get.

rtype

dict

returns

Response Syntax

{
    'Dependencies': [
        {
            'ApplicationId': 'string',
            'SemanticVersion': 'string'
        },
    ],
    'NextToken': 'string'
}

Response Structure

  • (dict) --

    Success

    • Dependencies (list) --

      An array of application summaries nested in the application.

      • (dict) --

        A nested application summary.

        • ApplicationId (string) --

          The Amazon Resource Name (ARN) of the nested application.

        • SemanticVersion (string) --

          The semantic version of the nested application.

    • NextToken (string) --

      The token to request the next page of results.