Values.UpdateRoomRequestSourceUpdates a room’s configuration.
type nonrec t = {identifier : RoomIdentifier.t;Identifier of the room to be updated. Currently this must be an ARN.
*)name : RoomName.t option;Room name. The value does not need to be unique.
*)maximumMessageRatePerSecond : RoomMaxMessageRatePerSecond.t option;Maximum number of messages per second that can be sent to the room (by all clients). Default: 10.
*)maximumMessageLength : RoomMaxMessageLength.t option;The maximum number of characters in a single message. Messages are expected to be UTF-8 encoded and this limit applies specifically to rune/code-point count, not number of bytes. Default: 500.
*)messageReviewHandler : MessageReviewHandler.t option;Configuration information for optional review of messages. Specify an empty uri string to disassociate a message review handler from the specified room.
*)loggingConfigurationIdentifiers : LoggingConfigurationIdentifierList.t option;Array of logging-configuration identifiers attached to the room.
*)}val make :
?name:??? ->
?maximumMessageRatePerSecond:??? ->
?maximumMessageLength:??? ->
?messageReviewHandler:??? ->
?loggingConfigurationIdentifiers:??? ->
identifier:RoomIdentifier.t ->
unit ->
tval to_value :
t ->
[> `Structure of
(string
* [> `Integer of RoomMaxMessageRatePerSecond.t
| `List of [> `String of LoggingConfigurationIdentifier.t ] list
| `String of RoomIdentifier.t
| `Structure of
(string * [> `Enum of string | `String of LambdaArn.t ]) list ])
list ]