Skip to content

Get Room

ivschat_get_room R Documentation

Gets the specified room

Description

Gets the specified room.

Usage

ivschat_get_room(identifier)

Arguments

identifier

[required] Identifier of the room for which the configuration is to be retrieved. Currently this must be an ARN.

Value

A list with the following syntax:

list(
  arn = "string",
  id = "string",
  name = "string",
  createTime = as.POSIXct(
    "2015-01-01"
  ),
  updateTime = as.POSIXct(
    "2015-01-01"
  ),
  maximumMessageRatePerSecond = 123,
  maximumMessageLength = 123,
  messageReviewHandler = list(
    uri = "string",
    fallbackResult = "ALLOW"|"DENY"
  ),
  tags = list(
    "string"
  ),
  loggingConfigurationIdentifiers = list(
    "string"
  )
)

Request syntax

svc$get_room(
  identifier = "string"
)