List Rooms
| ivschat_list_rooms | R Documentation |
Gets summary information about all your rooms in the AWS region where the API request is processed¶
Description¶
Gets summary information about all your rooms in the AWS region where
the API request is processed. Results are sorted in descending order of
updateTime.
Usage¶
ivschat_list_rooms(name, nextToken, maxResults, messageReviewHandlerUri,
loggingConfigurationIdentifier)
Arguments¶
nameFilters the list to match the specified room name.
nextTokenThe first room to retrieve. This is used for pagination; see the
nextTokenresponse field.maxResultsMaximum number of rooms to return. Default: 50.
messageReviewHandlerUriFilters the list to match the specified message review handler URI.
loggingConfigurationIdentifierLogging-configuration identifier.
Value¶
A list with the following syntax:
list(
rooms = list(
list(
arn = "string",
id = "string",
name = "string",
messageReviewHandler = list(
uri = "string",
fallbackResult = "ALLOW"|"DENY"
),
createTime = as.POSIXct(
"2015-01-01"
),
updateTime = as.POSIXct(
"2015-01-01"
),
tags = list(
"string"
),
loggingConfigurationIdentifiers = list(
"string"
)
)
),
nextToken = "string"
)