Skip to content

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

emrserverless_list_applications(nextToken, maxResults, states)

Arguments

nextToken

The token for the next set of application results.

maxResults

The maximum number of applications that can be listed.

states

An 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"
)

Request syntax

svc$list_applications(
  nextToken = "string",
  maxResults = 123,
  states = list(
    "CREATING"|"CREATED"|"STARTING"|"STARTED"|"STOPPING"|"STOPPED"|"TERMINATED"
  )
)