Module Values.UpdateRoomRequestSource

Updates a room’s configuration.

Sourcetype nonrec t = {
  1. identifier : RoomIdentifier.t;
    (*

    Identifier of the room to be updated. Currently this must be an ARN.

    *)
  2. name : RoomName.t option;
    (*

    Room name. The value does not need to be unique.

    *)
  3. maximumMessageRatePerSecond : RoomMaxMessageRatePerSecond.t option;
    (*

    Maximum number of messages per second that can be sent to the room (by all clients). Default: 10.

    *)
  4. 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.

    *)
  5. 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.

    *)
  6. loggingConfigurationIdentifiers : LoggingConfigurationIdentifierList.t option;
    (*

    Array of logging-configuration identifiers attached to the room.

    *)
}
Sourceval context_ : string
Sourceval make : ?name:??? -> ?maximumMessageRatePerSecond:??? -> ?maximumMessageLength:??? -> ?messageReviewHandler:??? -> ?loggingConfigurationIdentifiers:??? -> identifier:RoomIdentifier.t -> unit -> t
Sourceval 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 ]
Sourceval to_query : t -> Awso.Client.Query.t
Sourceval of_xml : Awso.Xml.t -> t
Sourceval of_string : string -> t
Sourceval of_json : Yojson.Safe.t -> t
Sourceval to_json : t -> Yojson.Safe.t