List Applications
| emrserverless_list_applications | R Documentation |
Lists applications based on a set of parameters¶
Description¶
Lists applications based on a set of parameters.
Usage¶
Arguments¶
nextTokenThe token for the next set of application results.
maxResultsThe maximum number of applications that can be listed.
statesAn optional filter for application states. Note that if this filter contains multiple states, the resulting list will be grouped by the state.
Value¶
A list with the following syntax:
list(
applications = list(
list(
id = "string",
name = "string",
arn = "string",
releaseLabel = "string",
type = "string",
state = "CREATING"|"CREATED"|"STARTING"|"STARTED"|"STOPPING"|"STOPPED"|"TERMINATED",
stateDetails = "string",
createdAt = as.POSIXct(
"2015-01-01"
),
updatedAt = as.POSIXct(
"2015-01-01"
),
architecture = "ARM64"|"X86_64"
)
),
nextToken = "string"
)