List Session Loggers
| workspacesweb_list_session_loggers | R Documentation |
Lists all available session logger resources¶
Description¶
Lists all available session logger resources.
Usage¶
workspacesweb_list_session_loggers(nextToken, maxResults)
Arguments¶
nextToken |
The pagination token used to retrieve the next page of results for this operation. |
maxResults |
The maximum number of results to be included in the next page. |
Value¶
A list with the following syntax:
list(
sessionLoggers = list(
list(
sessionLoggerArn = "string",
logConfiguration = list(
s3 = list(
bucket = "string",
keyPrefix = "string",
bucketOwner = "string",
logFileFormat = "JSONLines"|"Json",
folderStructure = "Flat"|"NestedByDate"
)
),
displayName = "string",
creationDate = as.POSIXct(
"2015-01-01"
)
)
),
nextToken = "string"
)
Request syntax¶
svc$list_session_loggers(
nextToken = "string",
maxResults = 123
)