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¶
Arguments¶
nextTokenThe token to use to get the next page of results after a previous API call.
maxResultsThe 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"
)