listSessionLoggers
abstract suspend fun listSessionLoggers(input: ListSessionLoggersRequest = ListSessionLoggersRequest { }): ListSessionLoggersResponse
Lists all available session logger resources.
Samples
// Lists all session loggers in the account without pagination
val resp = workSpacesWebClient.listSessionLoggers()Content copied to clipboard
// Lists session loggers with pagination parameters
val resp = workSpacesWebClient.listSessionLoggers {
maxResults = 1
nextToken = "eyJhbGciOiJIUzI1NiIsInR5cCI6IkpXVCJ9"
}Content copied to clipboard