Skip to content

List Applications

serverlessapplicationrepository_list_applications R Documentation

Lists applications owned by the requester

Description

Lists applications owned by the requester.

Usage

serverlessapplicationrepository_list_applications(MaxItems, NextToken)

Arguments

MaxItems

The total number of items to return.

NextToken

A token to specify where to start paginating.

Value

A list with the following syntax:

list(
  Applications = list(
    list(
      ApplicationId = "string",
      Author = "string",
      CreationTime = "string",
      Description = "string",
      HomePageUrl = "string",
      Labels = list(
        "string"
      ),
      Name = "string",
      SpdxLicenseId = "string"
    )
  ),
  NextToken = "string"
)

Request syntax

svc$list_applications(
  MaxItems = 123,
  NextToken = "string"
)