Values.CreateRoomResponseSourceCreates a room that allows clients to connect and pass messages.
type nonrec t = {arn : RoomArn.t option;Room ARN, assigned by the system.
*)id : RoomID.t option;Room ID, generated by the system. This is a relative identifier, the part of the ARN that uniquely identifies the room.
*)name : RoomName.t option;Room name, from the request (if specified).
*)createTime : Time.t option;Time when the room was created. This is an ISO 8601 timestamp; note that this is returned as a string.
*)updateTime : Time.t option;Time of the room’s last update. This is an ISO 8601 timestamp; note that this is returned as a string.
*)maximumMessageRatePerSecond : RoomMaxMessageRatePerSecond.t option;Maximum number of messages per second that can be sent to the room (by all clients), from the request (if specified).
*)maximumMessageLength : RoomMaxMessageLength.t option;Maximum number of characters in a single message, from the request (if specified).
*)messageReviewHandler : MessageReviewHandler.t option;Configuration information for optional review of messages.
*)loggingConfigurationIdentifiers : LoggingConfigurationIdentifierList.t option;Array of logging configurations attached to the room, from the request (if specified).
*)}type nonrec error = [ | `AccessDeniedException of AccessDeniedException.t| `ConflictException of ConflictException.t| `PendingVerification of PendingVerification.t| `ResourceNotFoundException of ResourceNotFoundException.t| `ServiceQuotaExceededException of ServiceQuotaExceededException.t| `ValidationException of ValidationException.t| `Unknown_operation_error of string * string option ]val error_of_json :
string ->
Yojson.Safe.t ->
[> `AccessDeniedException of AccessDeniedException.t
| `ConflictException of ConflictException.t
| `PendingVerification of PendingVerification.t
| `ResourceNotFoundException of ResourceNotFoundException.t
| `ServiceQuotaExceededException of ServiceQuotaExceededException.t
| `Unknown_operation_error of string * string option
| `ValidationException of ValidationException.t ]val error_of_xml :
string ->
Awso.Xml.t ->
[> `AccessDeniedException of AccessDeniedException.t
| `ConflictException of ConflictException.t
| `PendingVerification of PendingVerification.t
| `ResourceNotFoundException of ResourceNotFoundException.t
| `ServiceQuotaExceededException of ServiceQuotaExceededException.t
| `Unknown_operation_error of string * string option
| `ValidationException of ValidationException.t ]val to_value :
t ->
[> `Structure of
(string
* [> `Integer of RoomMaxMessageRatePerSecond.t
| `List of [> `String of LoggingConfigurationIdentifier.t ] list
| `Map of
([> `String of TagKey.t ] * [> `String of TagValue.t ]) list
| `String of RoomArn.t
| `Structure of
(string * [> `Enum of string | `String of LambdaArn.t ]) list
| `Timestamp of Time.t ])
list ]