Lists sessions for the specified application
Source:R/emrserverless_operations.R
emrserverless_list_sessions.RdLists sessions for the specified application. You can filter sessions by state and creation time.
See https://www.paws-r-sdk.com/docs/emrserverless_list_sessions/ for full documentation.
Usage
emrserverless_list_sessions(
applicationId,
nextToken = NULL,
maxResults = NULL,
states = NULL,
createdAtAfter = NULL,
createdAtBefore = NULL
)Arguments
- applicationId
[required] The ID of the application to list sessions for.
- nextToken
The token for the next set of session results.
- maxResults
The maximum number of sessions to return in each page of results.
- states
An optional filter for session states. Note that if this filter contains multiple states, the resulting list will be grouped by the state.
- createdAtAfter
The lower bound of the option to filter by creation date and time.
- createdAtBefore
The upper bound of the option to filter by creation date and time.