List Applications
| appregistry_list_applications | R Documentation | 
Retrieves a list of all of your applications¶
Description¶
Retrieves a list of all of your applications. Results are paginated.
Usage¶
appregistry_list_applications(nextToken, maxResults)
Arguments¶
nextToken | 
The token to use to get the next page of results after a previous API call.  | 
maxResults | 
The upper bound of the number of results to return (cannot exceed 25). If this parameter is omitted, it defaults to 25. This value is optional.  | 
Value¶
A list with the following syntax:
list(
  applications = list(
    list(
      id = "string",
      arn = "string",
      name = "string",
      description = "string",
      creationTime = as.POSIXct(
        "2015-01-01"
      ),
      lastUpdateTime = as.POSIXct(
        "2015-01-01"
      )
    )
  ),
  nextToken = "string"
)
Request syntax¶
svc$list_applications(
  nextToken = "string",
  maxResults = 123
)